Home › Forums › Back End › Email Activation For Registration Forms › Re: Email Activation For Registration Forms
July 14, 2010 at 2:36 am
#79728
Member
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…