Where does php webform data stores? If the form does not connected to any database, where does submitted information stores? If it is stores in client’s cookies, how can I process these information later?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It´s not stored anywhere, the values are only available in the
$_POSTor$_GETarray when the form is submitted and it´s up to you to do something with them. The values are lost as soon as the script terminates processing.