Jump to content

Recommended Posts

Hi all

 

I've got 2 tables... Lets say tableA and tableB

I want to do this, but I dont know if it is possible:

 

<?php if ($x_tableA_FIELD == "green") { ?>

 

echo "$x_tableB_FIELD1" WHERE $x_tableB_FIELD2 == "green"

 

<?php } ?>

 

 

So I know the if part works... can this WHERE part work?

And what would the syntax be?

Link to comment
https://forums.phpfreaks.com/topic/50548-need-help-with-if-and-where-command/
Share on other sites

I will warn you now, I am still new here but I think I understood the above (correct me if I am wrong)...

 

From what I took from your post, another alternative may be the following:

if($x_tableA_field == "green") {
    $sql = "SELECT FIELD1 FROM tableB WHERE FIELD2='" . $x_tableA_field . "'";
    $res = mysql_query($sql);
    $row = mysql_fetch_assoc($res);
    echo $row;
}

 

Hope this helps...

 

BigNaz

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.