[solved] -- Unexpected character in input ?!?
Posted: Tue Jan 18, 2005 12:51 pm
Warning: Unexpected character in input: ' in /usr2/home/asdfff/www/moodle/lib/weblib.php on line 1741
Any body have a clue what Unexpected character in input: ' means?
Cause I've never seen it before.
Below is the code I'm using.
Line 1741 is ...
$row_class="generaltablerow1";
Any body have a clue what Unexpected character in input: ' means?
Cause I've never seen it before.
Below is the code I'm using.
Line 1741 is ...
$row_class="generaltablerow1";
Code: Select all
if ($alternate){
if( round($i % 2) ){
$row_class="generaltablerow2";
}
else{
$row_class="generaltablerow1";
}
$i++;
}else{
$row_class = "generaltablerow";
}
echo "<tr valign="top" class="$row_class">";