Please reply to the list and not just directly to me.
Kaushal Shriyan wrote:
Thanks Stut
I have put the below script in test.php
I am getting the below information which is not formatted
array(5) { ["RSP_COOKIE"]=> string(28) "type=1&name=YW1pdA==&stype=0"
["RSP_DAEMON"]=> string(32) "9d07
Wild Guess:
You're on your own for adding in the HTML and Javascript crap.
On Tue, May 9, 2006 9:36 am, Kaushal Shriyan wrote:
> Hi ALL
>
> I have a sample cgi-script
>
> #!/usr/bin/perl
>
> use CGI;
>
> $cgi = new CGI;
>
> for $key ( $cgi->param() ) {
> $input{$key} = $cgi->param($ke
Kaushal Shriyan wrote:
On 5/9/06, Jochem Maas <[EMAIL PROTECTED]> wrote:
Thanks Jochem Maas
Thanks a Lot
so it would look like below if i put in test.php
echo "";
ksort($_GET);
foreach ($_GET as $key => $val) {
echo "{$key}: {$val}";
}
echo "";
yes if you put that in test.php t
Kaushal Shriyan wrote:
Hi ALL
I have a sample cgi-script
#!/usr/bin/perl
use CGI;
$cgi = new CGI;
for $key ( $cgi->param() ) {
$input{$key} = $cgi->param($key);
}
check out the superglobals $_POST, $_GET and $_REQUEST:
print qq{Content-type: text/html
this header is outputte
Kaushal Shriyan wrote:
Hi ALL
I have a sample cgi-script
Can any one please help me in converting this to a php script
Which would be of great help
Try it yourself. If you have problems check the manual
(http://php.net/docs), STFW (http://www.google.com/) and if you can't
find an ans
5 matches
Mail list logo