Jump to content

gavn8r

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

gavn8r's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I'm really new to PHP coming over from ASP, so please forgive the ignorance.  But... I have a flash form that sends data to a php file.  The problem is that I can't modify the flash form because I don't have the .fla file anymore.  When I get the data, I first use this code (given to me graciously by a member of this forum): //foreach ($_POST as $fld => $val) echo "$fld  = $val,<br>"; It returns, for example: emailVariables = My Namemyemail@domain.com(555) 555-1212California You can see that name, email, telephone number and state are all returned from a form element called emailVariables.  My problem is that I can't divide the data because there are no delimiters.  I'm wondering if there is a way to divide the data into separate variable names even though they all come from form elements with the same name?
  2. Thank you so much... it worked perfectly!
  3. I want to do this ASP code in PHP.  Can anybody help?  It captures all data from the form that passes to it and writes out the field names. <% Set FormFields = request.form For each Field in FormFields response.write Field & " = " & Request.Form(Field) & "<br>" Next %>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.