first my code:
$con = mysqli_connect("****", "*****", "*****", "practica");
if(!$con){
die ('no se conecta revisa lo primero');
}
if ($resultado = mysqli_query($con, "SELECT concat(text,text2) AS concatenado FROM valors")){
echo "rows: ". mysqli_num_rows($resultado);
}
mysqli_close($con);
how can i show on my webpage the number of rows? it shows nothing, also how can i make to show every concat from these to column tables (text,text2)? every one have 10 inserts and i need to show it, thanks