TheConeHead
Programmer
I am getting this error:
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in ... on line 53
This is what I am doing, line 53 is in red:
this works fine on other pages... what am I not seeing?
![[conehead] [conehead] [conehead]](/data/assets/smilies/conehead.gif)
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in ... on line 53
This is what I am doing, line 53 is in red:
Code:
$resultT = mysql_query("SELECT * FROM tbl where field = '$var'");
$num_rowsT = mysql_num_rows($resultT);
if ($num_rowsT != 0) {
while ($resultTA = mysql_fetch_array($resultT)) { ?>
<tr>
<td ><?Print "$resultTA['lname']";?></td>
<td > </td>
<td > </td>
</tr>
<? }
<?}
this works fine on other pages... what am I not seeing?
![[conehead] [conehead] [conehead]](/data/assets/smilies/conehead.gif)