Sending varibles behind the scenes from PHP to whatever absolute or relative page?
- by Chris_45
How do I post them to whatever page from here and how can I send these variables to several pages at the same time?
//catched those variables within the same page
$event = $_POST['event'];
$when = $_POST['eventdate'];
$where = $_POST['place'];
$name = $_POST['name'];
$tel = $_POST['tel'];
$email = $_POST['email'];
send $event, $when, $where, ... to("whateverurl1");//not the way