Page 1 of 1

How to handel external PHP CODE

Posted: Sun 18. Apr 2004, 07:40
by thode
How to handel this:

1. Running my own php code (xy1.php )where normaly the article content is shown. (i have seen there is replacement tag)

2. if the result of my xy1.php is shown it must be possible to send now form inputs to my second xy2.php

Thanks a lot...
Jörg :roll:

Posted: Tue 20. Apr 2004, 16:03
by ionrock
just post it back to the same page and check to see if there was a post.

Code: Select all

if($_POST['submit'] == "Submit Button Value) {
    // do whatever you want with the data
} else {
   // display the forms
}
If I am telling you something you already know I do apologize. Just trying to help :)