Hi,
This bit of code is giving me trouble:
for($i=1;$i <= 4;$i++){
$lan="lan$i";
print"<p>lan $i: ";
$selected=$form->{$lan};
internet_video_radio("lan$i",$selected);
}
It works perfectly on my localhost (Windows), but on the server (Linux), the $form->{$lan} part throws a 'unexpected t_curly_brace' error. The file does have Unix line endings, and both servers run php5+...
Anyone have any ideas why this would happen?
Thanks!