HI All,
I'm not receiving an error on this, but no records are being added to my table. Please see code excerpt below:
<?php
$link = mysql_connect('localhost', 'root', '');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully'...