jiggens Posted September 28, 2007 Share Posted September 28, 2007 Ok i have slight problem with this line of code i cant figure out how to get this to work correctly without creating a whole new table in my DB which shouldnt be required. http://homes.pacificscene.com/browse/community.php?ID=43 I have a community that has to have the word Building in the Place of Model. Really i didnt see the problem with building or model, but it needs to be done. <?php if($row[0] == '&siteID=43') { print "<td width='135'><strong>Building</strong></td>"; print "<td>" . $row[1] . "</td></tr>"; } else { print "<td width='135'><strong>Model</strong></td>"; print "<td>" . $row[1] . "</td></tr>"; }?> Is there a better way to do this? any advice is appreciated Quote Link to comment https://forums.phpfreaks.com/topic/71090-tag-swtiching/ Share on other sites More sharing options...
Barand Posted September 28, 2007 Share Posted September 28, 2007 Here's one alternative <?php $var = ($row[0] == '&siteID=43') ? 'Building' : 'Model'; print "<td width='135'><strong>$var</strong></td>"; print "<td>" . $row[1] . "</td></tr>"; Quote Link to comment https://forums.phpfreaks.com/topic/71090-tag-swtiching/#findComment-357589 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.