Hi all:
I'm getting the error:
Parse error: parse error, unexpected T_STRING, expecting ',' or ';' on line 76 in the below function. Any idea what I'm missing?
Thanks.
function selectClass(){
if ($mod == "$mod"){
echo '<td width=" " valign="top" class="td_select">
<a id="a_root_'.$counter.'" border="0" style="cursor:hand; text-align:top;">
//Line 76 begins below
<a class="td_root" onMouseover="this.style.color='black'" onMouseout="this.style.color='white'" onMouseout="this.style.color='white'" href="'.$row[2].'">'.$row[1].'</a>
</td>';
}else{
echo '<td width=" " valign="top" class="root_td">
<a id="a_root_'.$counter.'" border="0" style="cursor:hand; text-align:top; ">
<a class="td_root" onMouseover="this.style.color='black'" onMouseout="this.style.color='white'" onMouseout="this.style.color='white'" href="'.$row[2].'">'.$row[1].'</a>
</td>';
}
return;
}