- Name
- Content
After client submit, I use _$REQUEST to get it
- Code: Select all
if(isset($_POST["submit"]))
{
$txtName = $_REQUEST['txtName'];
$txtEmail = $_REQUEST['txtEmail'];
$txtContent = $_REQUEST['txtContent'];
// Insert data to database
}
But, sometimes, I lost data (txtContent ) on database. Please help me, I could not understand why?
Thanks

