Sending varibles behind the scenes from PHP to whatever absolute or relative page?

Posted by Chris_45 on Stack Overflow See other posts from Stack Overflow or by Chris_45
Published on 2010-03-13T13:07:30Z Indexed on 2010/03/13 13:15 UTC
Read the original article Hit count: 231

Filed under:
|

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

© Stack Overflow or respective owner

Related posts about php

Related posts about post