Hi, I have a basic question but it has me stumped. My client has a complicated order form with notes about products and different shipping rates for items. I'd like to avoid using a database catalog and make a print-friendly recipt after submitting a form. What is the best way to hide form rows that weren't choosen?
For example, the form looks like this:
<tr>
<td><input type="text" name="num_book_eng" value="" size="4" onchange="calc_book('eng', 'single')" /></td>
<td>$23.00</td>
<td><strong><em>The Comfort of Home - An Illustrated Step by Step Guide for Caregivers </em></strong></td>
</tr>
After they click submit, I'd like to hide rows that had a "0" value.
<tr class="<?= (empty($_GET['num_book_eng']))? "hidden": "show"; ?>">
That hides all rows the first time visiting the catalog form. Any sugestions would be appreciated!
-Nick