Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Email Activation For Registration Forms Re: Email Activation For Registration Forms

#79728

I have just give you the sample coding format, It will be very useful for you

Code for Textbox
<input type="text" value="" name="sample" size="15"/>

Code for Posting the value
$sample = $_POST;

Code for Inserting the values in the database
$sql = "INSERT INTO profile(image)" .
"VALUES(‘".$image."’) ";
mysql_db_query($db, $sql);

Please assign all the values like this, now the values will insert the database only one time… :D