[b]Trying to grab "?what=ever" from query url[/b]
Posted: Fri Jun 20, 2003 2:15 am
Trying to grab "?what=ever" from query url
How can I from client side "page.htm" link to server side "adid.php" and make the var "$adid" and it's value usable in "page.htm"? Trying to grab
"?adid=???" from linking url without using cookie.
page.htm
<html><head></head>
<body>
<a href=........
or
<script language=javascript.......
or
<how ever.......
</body></html>
adid.php
<html><head>
<?php
$adid=$_GET['adid'];
?>
</head><body>
</body></html>
Thanks for your help to a real newbie!!
How can I from client side "page.htm" link to server side "adid.php" and make the var "$adid" and it's value usable in "page.htm"? Trying to grab
"?adid=???" from linking url without using cookie.
page.htm
<html><head></head>
<body>
<a href=........
or
<script language=javascript.......
or
<how ever.......
</body></html>
adid.php
<html><head>
<?php
$adid=$_GET['adid'];
?>
</head><body>
</body></html>
Thanks for your help to a real newbie!!