[PHP] Re: Submit code

2002-07-16 Thread Martin Thoma
I am looking for PHP code that will submit (post) a form automaically to a ANOTHER php page. I do not want to press a submit button. I have found a class at PHPClasses but it is too complicated for my needs. What is the simplest way of doing this? What is the theoretical approach? I

[PHP] Re: Submit code

2002-07-16 Thread Kondwani Spike Mkandawire
Algorithmically: //in php 1) create a counter that will keep count of the # of variables that have been set 2) if all your variables have been set spit out the relevant JavaScript that runs the AutoSubmit function... (There are a couple onLine)... ... It can follow the following

[PHP] Re: Submit code

2002-07-16 Thread Lee Doolan
here's an excerpt from a script in which I do something like that: $pdArgs= demo= . urlencode($argAry['demo']) . . first_name= . urlencode($argAry['first_name']) . . last_name= . urlencode($argAry['last_name']) . . [. . .]