Re: [PHP] HTML form online

2004-11-19 Thread Jed Smith
Warren Vail wrote: If so you probably want to start here; http://www.php.net/manual/en/ref.curl.php cURL can do that? -- _ (_)___Jed Smith, Code Ninja | / __| RFBs: [email for info] | \__ \ +1 (541) 606-4145 _/ |___/ [EMAIL PROTECTED] (Signed mail preferred: PGP 0x703F

RE: [PHP] HTML form online

2004-11-19 Thread Vail, Warren
> I want to write php script that fill out HTML form online. > Any ideas how to do it? I'm probably reading too much into your question, but it sounds like there is another website with a form on it, and you would like to develop a script that would connect to the website, fill in the informatio

RE: [PHP] HTML form online

2004-11-19 Thread Gryffyn, Trevor
Sure, get whatever data you need into variables and just do something like this: First Name: Last Name: Company: Basic HTML form pre-population, but using PHP variables. Makes it nice and dynamic, good for pre-populating query data that's already been run (searches and such

Re: [PHP] HTML form online

2004-11-19 Thread Matthew Sims
> I want to write php script that fill out HTML form online. Any ideas > how to do it? > If you have a form such as this: You would see two text lines filled in with Testing One and Testing Two. So replace the value with whatever data you're gathering from PHP. For textarea's do as su

Re: [PHP] HTML form online

2004-11-19 Thread Greg Donald
On Fri, 19 Nov 2004 14:39:57 -0500, Jerry Swanson <[EMAIL PROTECTED]> wrote: > I want to write php script that fill out HTML form online. Any ideas > how to do it? http://pear.php.net/package/HTTP_Request If that isn't enough, you can open a socket connection directly to the web server: php.net/