Nuestro team de expertos despúes de varios días de investigación y de recopilar de información, hemos dado con la respuesta, esperamos que te resulte útil en tu trabajo.
Ejemplo 1: cómo mostrar datos de la base de datos mysql en una tabla html usando php
$con=mysqli_connect("example.com","peter","abc123","my_db");// Check connectionif(mysqli_connect_errno())echo"Failed to connect to MySQL: ".mysqli_connect_error();$result=mysqli_query($con,"SELECT * FROM Persons");echo"
Firstname
Lastname
";while($row=mysqli_fetch_array($result))echo"";echo"".$row['FirstName']." ";echo"".$row['LastName']." ";echo" ";echo"
";mysqli_close($con);?>
Ejemplo 2: datos de mysql a tabla html
$host="localhost";$user="username_here";$pass="password_here";$db_name="database_name_here";//create connection$connection=mysqli_connect($host,$user,$pass,$db_name);//test if connection failedif(mysqli_connect_errno())die("connection failed: ".mysqli_connect_error()." (".mysqli_connect_errno().")");//get results from database$result=mysqli_query($connection,"SELECT * FROM products");$all_property=array();//declare an array for saving property//showing propertyecho'
';//initialize table tagwhile($property=mysqli_fetch_field($result))echo''.$property->name.' ';//get field name for headerarray_push($all_property,$property->name);//save those to arrayecho' ';//end tr tag//showing all datawhile($row=mysqli_fetch_array($result))echo"";foreach($all_propertyas$item)echo''.$row[$item].' ';//get items using property valueecho' ';echo"
";?>
Recuerda dar difusión a esta reseña si te fue útil.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)