View Single Post
Old 03-07-2008, 09:09 AM   #4 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,397
sde is on a distinguished road
yes it is. throw this at the top of your code to test it out.
PHP Code:
<?php
if (is_array($_REQUEST)) {
  foreach (
$_REQUEST as $key => $value) {
    echo 
$key ' = ' $value '<br />';
  }
}
?>
__________________
testing 1 2 3
sde is offline   Reply With Quote