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)