RE: Hide an infobox when secure or unsecure
Daemonj <[email protected]> 29 Aug 2003 02:03:27 -0000
| Newsgroups | gmane.comp.web.oscommerce.tips |
|---|---|
| Message-ID | <6844bf57d9fb55f241faf86963b16c1b@osCommerce-Forums> |
This message was sent from: Tips and Tricks http://forums.oscommerce.com/viewtopic.php?p=221209#221209 ---------------------------------------------------------------- Your debugging line is missing an echo statement, which is why you are not seeing anything. Change [code]<td><?php ':' . $request_type . ':'; ?></td> [/code] to this: [code]<td><?php echo 'request type is:' . $request_type; ?></td> [/code] and see if that does not report something after the "Request type:" entry that will now appear.