Team Potter
New member
How would I make this code:
$sql = ' SELECT *'
. ' FROM `users`'
. ' LIMIT 0 , 30 ';
Into a PHP script where it would display the output of the MySQL query? Or, how would I be able to see all entries in the database from a PHP script? Thanks!
$sql = ' SELECT *'
. ' FROM `users`'
. ' LIMIT 0 , 30 ';
Into a PHP script where it would display the output of the MySQL query? Or, how would I be able to see all entries in the database from a PHP script? Thanks!