Hi,
I have a field in mysql table named Resolved. I have added the following argument to my php page to show me only records that have this value set to 0. Don't want those which are resolved=1 to be shown.
<?php if ($row_GetKitt['Resolved'] == 0) { ?>
<?php do { ?>
<?php echo $row_GetKitt['KITT']; ?>
<?php } while ($row_GetKitt = mysql_fetch_assoc($GetKitt)); } ?>
I am getting everything shown on the page, including those that are marked resolved=1.
When i change <?php if ($row_GetKitt['Resolved'] == 1) { ?> i get nothing shown at all. Am I missing something here?
Any help is appreciated.
Thanks,
JR
I have a field in mysql table named Resolved. I have added the following argument to my php page to show me only records that have this value set to 0. Don't want those which are resolved=1 to be shown.
<?php if ($row_GetKitt['Resolved'] == 0) { ?>
<?php do { ?>
<?php echo $row_GetKitt['KITT']; ?>
<?php } while ($row_GetKitt = mysql_fetch_assoc($GetKitt)); } ?>
I am getting everything shown on the page, including those that are marked resolved=1.
When i change <?php if ($row_GetKitt['Resolved'] == 1) { ?> i get nothing shown at all. Am I missing something here?
Any help is appreciated.
Thanks,
JR