Skip to content

Instantly share code, notes, and snippets.

@slick2
Created May 3, 2018 14:55
Show Gist options
  • Save slick2/ad0a844a4f22342d1b7a15a9f579270e to your computer and use it in GitHub Desktop.
Save slick2/ad0a844a4f22342d1b7a15a9f579270e to your computer and use it in GitHub Desktop.
<?php
/* pconnect for newbies */
mysql_pconnect('localhost', 'root', '')
or die(mysql_error());
mysql_select_db('mooddatabase')
or die(mysql_error());
?>
<?php
$result = mysql_query("select * from users");
while($users=mysql_fetch_array($result)){
echo $users['username'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment