Forum Moderators: coopster
<td><?php if ($row_rsRFI['Resolution'])== NULL) {echo } else {echo $row_rsRFI['Resolution'];} ?></td>
It is the implementation of the if that is causing the page to fail.
Cheer
Pigbag
if ($row_rsRFI['Resolution'])== NULL) {
echo
} else {
echo $row_rsRFI['Resolution'];
}
Your if line has two closing parens but only one opening paren. Remove the extra closing paren.
Your echo needs quotation marks around the , and a closing ;
if ($row_rsRFI['Resolution'] == NULL) {
echo " ";
} else {
echo $row_rsRFI['Resolution'];
}
Or, if there's not an error message, tell us exactly what doesn't work. Don't just say it doesn't work. Tell us what it's expected to do, and what it is actually doing.