Forum Moderators: coopster
strtoupper(dechex($ra)). = some pin values example (20016643)
This is what I want to do: when some one click on that link, it will be direct to /etr2/poppinlist.php link
and poppinlist page is repobsible for to search into the database for that pin # and prints out it's all other charactretics. I do not have problem with those things. Only problem is that passing the pin value to /etr2/poppinlist.php page. How? Help please
Doe anyone knows how to pass "strtoupper(dechex($ra))" values to 'poppinlist.php page. that's because i trying to use function preg_match() to use using with my database query. I do not know how pass that value to poppinlist.php file
Suresh
You can append the value in a querystring:
echo "<a href='/etr2/poppinlist.php?ra=".strtoupper(dechex($ra))."' class =h9>".strtoupper(dechex($ra)). "</a>";
In the script(poppinlist.php), you can access the value like this:
$_GET["ra"]
Regards,
Birdman
too quick for me, rlkanter!