----- Original Message ----- From: "whoisquilty" I've got a form with a pulldown on my main page. The user chooses from the pulldown and that is passed to the secondary page. That variable is supposed to search the database and display the results.
However, the secondary page is not getting the variable. It shows in the URL, but it shows as 0 in the DB query. <snip> Here's the code from the secondary page: $var = floor($_GET['var']); <snip> --------------------------- floor() is a maths function so it is goint to return 0 for alpha charactors
