how to post variable in the header() function! using location:
I don't know for sure, but wouldn't something like this work:
<?php $direct = "http://mysite.com/home.php"; Header("Location: $direct"); ?>
Or do you mean
$p=100;
header("location: http://mysite.com/process.php?p");
Di
Thank you very much !