Skip to content

Instantly share code, notes, and snippets.

<html>
<?
// try db connection
mysql_connect("localhost","root","") or die("Could not connect to mysql!");
// select database
mysql_select_db("ubervu") or die("Could not select db!");
// create SQL query
$result = mysql_query("SELECT * FROM albums");