Please could someone look at the code associated with this error
Parse error: syntax error, unexpected T_ELSE, expecting ',' or ';' ...
The code works with just the 'if' statment but fails with the above error when i add the 'else' component.
Code
<td width="13%"><p>
<?php
if ($row_rs_All['Fax']=="") echo "None"
else
echo $row_rs_All['Fax'};
?></p>
</td>
New to PHP but have searched extensively and cannot find the error.
Thanks in anticipation
Damon