PHP Code:
<?php
$con = mysql_connect("localhost", $username, $password, $new_link);
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
else
{
echo "connect made";
}
mysql_select_db("addressbook", $con);
mysql_query("INSERT INTO hoursworked (firstname, mon, tue)
VALUES ('mike', '6 hours', '4 hours')")
?>
any help is good thanks
mike php mysql novice