View Single Post
Old 08-29-2008, 12:09 AM   #2 (permalink)
frosty
The Wanderer
 
frosty's Avatar
 
Join Date: Aug 2008
Location: texas
Posts: 13
Thanks: 3
frosty is on a distinguished road
Default

Thinking on this would this work?

PHP Code:
$query "...."
$res mysql_query($query); 
if(
$res){ 
   while(
$row mysql_fetch_assoc($res)){ 
      foreach(
$row as $key => $val){ 
         
$_SESSION[$key] = StripSpecChar($val);           
      } 
   } 

frosty is offline  
Reply With Quote