Jump to content

reag27

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

reag27's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hello I need help with a form I created, I'm having trouble storing information from the form in a mysql database, the field that seems to be updating is the auto_increment the rest of the fields you just gives me blank, I just started using php/mysql 5 days ago, I have tried several options none seem to work I'll apreciate all the help I can get, here is the form and script <html> <body> <form action="page2.php" name="forward" method="post"> Name:<input type="text" name="name" value=<? echo $name; ?>"> Address:<input type="text" name="address" value=<? echo $name; ?>"> Career:<input type="text" name="career" value <? echo $career; ?>"> <input type="submit" name="submit" value="submit"> </form> </body> </html> <html> <body> <?php $link=mysql_connect("localhost","root"); mysql_select_db("text"); $sql="insert into table1"; $sql .="(num,name,address,career)"; $sql .="values('','$name', '$address', '$career')"; mysql_query($sql); ?> </body> </html>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.