Need to make variables post to multiple forms...

I have a really nice script going but am lost how to finish what I am implementing… it looks like this (basically, its quite complex but heres the jist of whats going on)

index.html

Form field “title” and “article” action=“post.php”

post.php

$title = $_POST[‘title’];
$article =$_POST[‘article’];

Now… how can i get these variables to post onto 5 of my websites article submit forms at once automatically?

Basically I want an easy way to put the same info on all my sites (some on same server some on different) at once. (not using rss or any other methods, must be using this script)

Hi

You have to pass them to other pages.

Suppose you want it to temp page than you have to pass it

temp

Now in temp.php

Have to get it using $_request[‘article’];

Hope this will help you

Sponsor our Newsletter | Privacy Policy | Terms of Service