View Single Post
Old 11-20-2004, 09:19 AM   #7 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,505
sde is on a distinguished road
i also noticed this line:
Code:
<postfield value="$skier"/>
php is not on when you use that line of code, so $skier will have no php value, you might want to try:
Code:
<postfield value="<?=$skier?>"/>
that is the php shortcut for echoing a value. it would be the equivalent to
Code:
<postfield value="<? echo $skier; ?>"/>
__________________
Mike
sde is offline   Reply With Quote