Hi, I want to pass variables from one php script to another but not through the GET method (ie.php?var=2)option but through POST, BUT i dont want to do that through a form, is that doable ? does the Header func supports that ? thanks.
In a word, no. Post is only available through a form, unless you do a proxy to write the HTTP request yourself. Hope that helps!
Chris King
In a word: YES.
Search the forum and you'll find several methods to send data through POST.
look in the articles at zend.com. they have a great article about writing a function to do this. it works very well.