Jump to content

insky10

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

insky10's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hello, I would like to know if anyone could help me get data from an HTTP Post. Lets say I have an incoming string of data like such: Name="Wendy" Color="Blue" Address="333 west" I want to capture that entire string and then write it to a file. I can write to a file fine, I am having trouble capturing the entire string. I have used the $_Post and $HTTP_POST_VARS with no luck, it seems that I can only capture the first part of the string: ie: $data = $HTTP_POST_VARS['Name']; or $data = $_POST['Name']; would get this result: "Wendy" Color="Blue" Address="333 west" I want to capture the whole string like this: Name="Wendy" Color="Blue" Address="333 west" If I could parse it before I write it to the file, that would be even better..but I will take the whole string. Any help would be appreciated. thanks
  2. Hello, I am new to PHP and was wondering if someone could help me with a script to handle an HTTP Post. I just want something that will take a HTTP Post and write the data that it receives to a file on my web server. thanks...
×
×
  • 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.