How to handel external PHP CODE

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
thode
Posts: 7
Joined: Sun 14. Mar 2004, 18:15
Contact:

How to handel external PHP CODE

Post 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:
ionrock
Posts: 279
Joined: Fri 20. Feb 2004, 17:04

Post 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 :)
Post Reply