View Single Post
Old 11-20-2004, 07:19 AM   #4 (permalink)
idx
Senior Grasshopper
 
idx's Avatar
 
Join Date: Jun 2003
Location: FL
Posts: 317
idx is on a distinguished road
Depending on your PHP installation, using plain $skier in the SQL may not work. Try using $_POST['skier'] or $_REQUEST['skier'] .

Worst case put something at the top of the PHP page to see what the WML page is requesting. eg:

PHP Code:
<pre>
<?php print_r($_POST); ?>
</pre>
At the least you can see if anything is making it through.

-r
idx is offline   Reply With Quote