Jump to content

Recommended Posts

Ok here is one I have been trying to figure out. I am writing a script to go along with some forums.  basically I want to get a post and then do a LIKE search for a certain string in all other posts that are not in that topic or several other forums that are on the board here is what I got so far.

 

    $query = "SELECT * FROM ibf_posts,ibf_topics WHERE (ibf_posts.post LIKE '%$link%') && (ibf_posts.forum_id != $tid) && (ibf_topics.forum_id != '4') && (ibf_topics.forum_id != '4') && (ibf_topics.forum_id != '98') && (ibf_topics.forum_id != '97') && (ibf_topics.forum_id != '130') && (ibf_topics.forum_id != '4') && (ibf_topics.forum_id != '129') && (ibf_topics.forum_id != '127') && (ibf_topics.forum_id != '128') LIMIT 6";
    $result = mysql_query($query) or die("oops" . mysql_error());
    while ($row = mysql_fetch_array($result))
    {
        extract($row);
        if ($count == 3)
        {
            echo "<br />";
            $count = 0;
        }
        echo "<a href=\"$boardurl/index.php?showtopic=$topic_id\" target=\"_blank\">$topic_id</a>,";
        $count = $count + 1;
    }

 

 

But unfortunately all it does is return the topic of the post it is currently checking 6 times. What am I doing wrong?

Link to comment
https://forums.phpfreaks.com/topic/55816-joining-queries/
Share on other sites

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.