plz..i need a help..

Thread Solved
Reply

Join Date: Nov 2007
Posts: 16
Reputation: dbayo is an unknown quantity at this point 
Solved Threads: 0
dbayo dbayo is offline Offline
Newbie Poster

plz..i need a help..

 
0
  #1
Dec 14th, 2007
ello..im a new beginner for pHp script..i have to complete my final project..i used php as my programming language..but,i have a problem rite now..did anybody know,how to insert data from 1 form into multiple tables in MySql Database?..

ok,rite now,i have 2 tables, Client and Client2,k..And from 1 form that i created ,i want to add the information from the form into table Client and Client2..anybody Know?...plz help me..;(
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 596
Reputation: buddylee17 has a spectacular aura about buddylee17 has a spectacular aura about 
Solved Threads: 125
buddylee17's Avatar
buddylee17 buddylee17 is offline Offline
Posting Pro

Re: plz..i need a help..

 
0
  #2
Dec 14th, 2007
Assuming you already know how to connect to the database and that your form method was post:
  1. $name=$_POST['name'];
  2. $age=$_POST['age'];
  3. $sql="INSERT INTO Client (name,age) VALUES ('$name','$age')";
  4. $result=mysql_query($sql) or die(mysql_error());
  5. $sql="INSERT INTO Client2 (name,age) VALUES ('$name','$age')";
  6. $result=mysql_query($sql) or die(mysql_error());
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 16
Reputation: dbayo is an unknown quantity at this point 
Solved Threads: 0
dbayo dbayo is offline Offline
Newbie Poster

Re: plz..i need a help..

 
0
  #3
Dec 15th, 2007
Thanx u buddy....i try my bes..tq..
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the PHP Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC