How do you display a PHPmyadmin table onto a web browser/web page?
Posted
by
user1390754
on Stack Overflow
See other posts from Stack Overflow
or by user1390754
Published on 2012-10-22T22:45:20Z
Indexed on
2012/10/22
23:00 UTC
Read the original article
Hit count: 151
Just a simple question, i've been searching around and for some reason i cannot find an answer to this. after creating a database/table in Phpmyadmin using xampp, what command do i need to put into my webpage (PHP) to show the table I made? I know the first step involves connecting to the database and i think i've done that properly.
This is the code i found from somewhere about connecting (w3 tutorials I believe)
$con = mysql_connect("localhost","xxxxxx,"");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
© Stack Overflow or respective owner