i want to be able to email a customer a order form through email and have them send it back via email
i then want to have something where i copy and past the email form onto a form on my page and the php will separate what their input is and put them all into variables so i can store them on my db .
example
name: %NAME% YOUR NAME HERE %NAME%
address %ADDRESS% YOUR ADDRESS HERE %ADDRESS%
zip %ZIP% ZIP CODE HERE %ZIP%
state %STATE% STATE HERE %STATE%
i basically want to send them something like that and then copy and paste their filled out form and have my code put whatever they put in between the fields will be separated and put into a variable
for example
i copy and paste this into my form
name: %NAME% robert %NAME%
address %ADDRESS% 55 sesame street %ADDRESS%
zip %ZIP% 90210 %ZIP%
state %STATE% florida %STATE%
form turns it into this
Code: Select all
<?
$name = robert;
$address = 55 sesame street;
$zip = 90210;
state = florida;
?>
can somebody help me with something like this please?