View Single Post
  #1 (permalink)  
Old 11-22-2007, 08:18 AM
mikejkellyuk mikejkellyuk is offline
Novice
Join Date: Nov 2007
Posts: 8
iTrader: (0)
mikejkellyuk is on a distinguished road
please can somebody help me with php mysql

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

__________________

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!

Last edited by TeraTask : 11-22-2007 at 10:26 AM. Reason: Removed username and password
Reply With Quote