summaryrefslogtreecommitdiffstats
path: root/tests/httpd-php-mysql-sanity-test/old_mysql.php
blob: 8904c5834a771f58644f1e00fa73e119c41b7cb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
$db = mysql_connect("localhost", "root");
if (!$db) {
    die("Could not connect");
}
if (!mysql_select_db("php_mysql_test")) {
    die("Could not select database");
}
$res = mysql_query("SELECT * from foobar");
$row = mysql_fetch_assoc($res);
printf("%s is %d\n", $row['name'], $row['value']);
?>