View Single Post
  #2  
Old 18th November 2021, 19:17
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default
if(isset($_POST['submit']))
{
if($_POST["userId"]==$_POST["repassword"]){

mysql_query($link,"insert into customer (userId, password, firstName, lastName, address,
phone, email)
values('$_POST[userId]','$_POST[password]','$_POST[firstName]','$_POST[lastName]','$_POST[address]','$_POST[phone]','$_POST[email]')")
or die(mysql_error(__FILE__, __LINE__));
}
echo "Done!!!!";
}
Reply With Quote