Passing variables without post or get?
Posted: Fri Jan 29, 2010 2:48 pm
Not sure how to do this but,
I have a form that does some validation from the POST variables
I need to send the POST variable to another page on a different server. Currently I am doing it this way:
$url = "http:servernumber2?id=$posted_variable
$myresult = file_get_contents($url);
echo $myresult;
Is there a way to pass the variable to the other file without sending it through the URL?
I have a form that does some validation from the POST variables
I need to send the POST variable to another page on a different server. Currently I am doing it this way:
$url = "http:servernumber2?id=$posted_variable
$myresult = file_get_contents($url);
echo $myresult;
Is there a way to pass the variable to the other file without sending it through the URL?