08-29-2008, 12:09 AM
|
#2 (permalink)
|
|
The Wanderer
Join Date: Aug 2008
Location: texas
Posts: 13
Thanks: 3
|
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);
}
}
}
|
|
|
|