From be4f83cd2a17a0ec05f5bce50c91befaafaa6e0c Mon Sep 17 00:00:00 2001 From: jhunkeler Date: Sun, 20 Dec 2009 18:38:08 +0000 Subject: Test. git-svn-id: http://svn.3rd-infantry-division.org/testing/branches/Bayonet CMS v2@376 c5b2fb0a-d05d-0410-98c8-828840a80ff6 --- ajax/database/getuser.php | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 ajax/database/getuser.php (limited to 'ajax/database/getuser.php') diff --git a/ajax/database/getuser.php b/ajax/database/getuser.php new file mode 100644 index 0000000..bf6e677 --- /dev/null +++ b/ajax/database/getuser.php @@ -0,0 +1,38 @@ + + +Firstname +Lastname +Age +Hometown +Job +"; + +while($row = mysql_fetch_array($result)) + { + echo ""; + echo "" . $row['FirstName'] . ""; + echo "" . $row['LastName'] . ""; + echo "" . $row['Age'] . ""; + echo "" . $row['Hometown'] . ""; + echo "" . $row['Job'] . ""; + echo ""; + } +echo ""; + +mysql_close($con); +?> \ No newline at end of file -- cgit