Hi,

Friday, February 28, 2003, 1:16:56 PM, you wrote:
TR> Hi,

TR> Friday, February 28, 2003, 12:09:30 PM, you wrote:
JWH>> Can anyone with Apache verify that you can pass arguments inside of a
JWH>> virtual() call? Something like:

JWH>> Virtual("script.pl?id=1")

JWH>> And have $id available within script.pl.

JWH>> I don't have access to an Apache server right now to test, so thank you
JWH>> very much. 

JWH>> ---John W. Holmes...

JWH>> PHP Architect - A monthly magazine for PHP Professionals. Get your copy
JWH>> today. http://www.phparch.com/


TR> it shows up under
TR> _SERVER["QUERY_STRING"] => id=1

TR> I ran the following script (virt) in cgi-bin

TR> #!/usr/bin/php
TR> <?php
TR> header('Content-type: text/plain');
TR> echo "\n";
TR> echo 'Test script report';
TR> phpinfo(32);
?>>

TR> Then virtual('/cgi-bin/virt?id=1');

TR> -- 
TR> regards,
TR> Tom



That would be

echo QUERY_STRING = "$QUERY_STRING"

in perl

-- 
regards,
Tom


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to