Hi
I have a simple message form with three fields - name, email, message.
How do I extract the email entry to use in php please. the field is email.
I have a simple message form with three fields - name, email, message.
How do I extract the email entry to use in php please. the field is email.
Hi
In end_page (after submit) you can use that:
$varPhp=$this->data("data:email", "default_value");
For example:
$varPhp=$this->data("data:email", "your_email@gmail.com");
In end_page (after submit) you can use that:
$varPhp=$this->data("data:email", "default_value");
For example:
$varPhp=$this->data("data:email", "your_email@gmail.com");
You need to login to be able to post a reply.