hi! how do you send parameters in a post-url string?
if in get, something like this would work

get-url=http://localhost/test.php?sender=%p

then inside the php script,

$sender = $_GET["sender"];

so why won't a configuration like this

post-url=http://localhost/test.php?sender=%p

then doing 

$sender = $_POST["sender"]

won't store the correct value? or maybe the post-url
string is incorrect? thanks for all help! 

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Reply via email to