I have a complicated table that needs to be altered depending upon the
contents of a field in one of my recordsets. I've tried several approaches
and need to know what you recommend.

I've created three totally different tables and put the HTML code for each
into a database. Then I used PHP to insert the relevant code into the page
depending upon the contents of a field in a different database. Result -
the appropriate code is inserted properly into the HTML. Problem - the HTML
table I'm trying to insert contains PHP code which is not executed after
being inserted.

Because sometimes the HTML table needs 4 rows and other times only 2, I
tried enclosing the appropriate <tr>s in a PHP IF statement (see below).
Problem - PHP IF wasn't executed, both <tr>s embedded appeared on page
anyway. And, sometimes, the relevant <tr>s will include PHP code so this
embedding technique won't work.

<?php
  if ($row_RS_PageContent['PageType'] != "2") {
?>
  <tr>
    <td width="200" height="0" bgcolor="99CCCC">&nbsp;</td>
    <td width="20" height="0">&nbsp;</td>
    <td height="0" align="left" valign="top">&nbsp;</td>
    <td height="0" align="right" valign="top">&nbsp;</td>
    <td width="20" height="0">&nbsp;</td>
    <td width="5" height="0" bgcolor="333366">&nbsp;</td>
  </tr>
  <tr>
    <td width="200" height="0" bgcolor="99CCCC">&nbsp;</td>
    <td width="20" height="0">&nbsp;</td>
    <td height="0" align="left" valign="top">&nbsp;</td>
    <td height="0" align="right" valign="top">&nbsp;</td>
    <td width="20" height="0">&nbsp;</td>
    <td width="5" height="0" bgcolor="333366">&nbsp;</td>
  </tr>
<?php
}
?>

Should I simply describe the entire relevant <tr>s on one line,
appropriately escape them, assign the to a variable and then use an ECHO to
put them on the page? Or does someone have a simpler more elegant solution?

Thanx
-- 
Robb Kerr
Digital IGUANA
Helping Digital Artists Achieve their Dreams
----------------------------------------------------
http://www.digitaliguana.com
http://www.cancerreallysucks.org

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to