Currently my page uses php and I'm able to output a checkmark image in a table cell if a certain value is found in the dataset as seen below
I'm trying to change the page over to use AJAX with an XML dataset and I'm not sure how to make the same thing happen as above. Can someone assist with this code?
Code:
<?php echo ($row_rs_test['status'] == "Quote")?"<img src=\"/mdwapp/images/0090_check.gif\" alt=\"Check\" width=\"12\" height=\"12\">":" "; ?>
I'm trying to change the page over to use AJAX with an XML dataset and I'm not sure how to make the same thing happen as above. Can someone assist with this code?