Jump to content

IF statement Help


syclonefx

Recommended Posts

My IF statement isn't working. Everything below the if statement comes up. Can some one help me with this problem?

 

<?php
$bizID = ($row_rsBizCat['bizID']); 
$query = sprintf("SELECT * FROM rsbiz WHERE active = 1 AND bizID = %s",mysql_real_escape_string($bizID));
$result = mysql_query($query);
while ($row = mysql_fetch_assoc($result)) {
if ($row['biztype'] =="web") {
echo '<span class="dtblk"><a href="services_details.php?bizID=' . $row['bizID'] . '" class="outlnk" title="' .$row['name']. '">' .$row['name']. '</a></span><br />'; }
if ($row['biztype'] =="biz") {
echo '<span class="dtblk"><a href="services_details.php?bizID=' . $row['bizID'] . '" class="outlnk" title="' .$row['name']. '">' .$row['name']. '</a></span><br />'; }
echo '<span>Address: ' . $row['address'] . '</span><br />';
echo '<span>City: ' . $row['city'] . '</span><br />';
echo '<span>State: ' . $row['state'] . '</span><br />';
echo '<span>Zip Code: ' . $row['zipcode'] . '</span><br />';
echo '<span>Phone: ' . $row['phone'] . '</span>';
} ?>

 

Link to comment
https://forums.phpfreaks.com/topic/92229-if-statement-help/
Share on other sites

I'm not sure what you mean by:

Everything below the if statement comes up.

There are two "if" statements.

 

I don't see any difference in what you're echoing in the two "if" statements, so you should be able to combine them

<?php
$bizID = ($row_rsBizCat['bizID']); 
$query = sprintf("SELECT * FROM rsbiz WHERE active = 1 AND bizID = %s",mysql_real_escape_string($bizID));
$result = mysql_query($query);
while ($row = mysql_fetch_assoc($result)) {
      if ($row['biztype'] =="web" || $row['biztype'] == 'biz')
            echo '<span class="dtblk"><a href="services_details.php?bizID=' . $row['bizID'] . '" class="outlnk" title="' .$row['name']. '">' .$row['name']. '</a></span><br />';
      echo '<span>Address: ' . $row['address'] . '</span><br />';
      echo '<span>City: ' . $row['city'] . '</span><br />';
      echo '<span>State: ' . $row['state'] . '</span><br />';
      echo '<span>Zip Code: ' . $row['zipcode'] . '</span><br />';
      echo '<span>Phone: ' . $row['phone'] . '</span>';
} ?>

 

Ken

Link to comment
https://forums.phpfreaks.com/topic/92229-if-statement-help/#findComment-472480
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.