Hello
how can i insert my data in the database.if i have unkown number of emails stored in a table and want to send them to the temp_members table..
Thank you
how can i insert my data in the database.if i have unkown number of emails stored in a table and want to send them to the temp_members table..
Code:
$sql="INSERT INTO temp_members".
"(email,Province,area)".
"VALUES('$email','$province','$area'')";
Comment