Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 882201
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T12:23:29+00:00 2026-05-15T12:23:29+00:00

I have the following inside a foreach loop (displaying my various videos), I’m trying

  • 0

I have the following inside a foreach loop (displaying my various videos), I’m trying to display some alternate text for the top three voted videos. What on earth am I doing wrong (a lot clearly)…

$sql = "SELECT video_id FROM videos WHERE displayable='y' ORDER BY votes desc LIMIT 0,3";
$result = mysql_query($sql);
$row = @mysql_fetch_array($result);

if(in_array($video->getProperty('video_id')) == $row['video_id']) {
do this...
} else {
do this..
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T12:23:29+00:00Added an answer on May 15, 2026 at 12:23 pm

    Firstly replace your code with some error preventing techniques like so!

    $sql = "SELECT video_id FROM videos WHERE displayable='y' ORDER BY votes desc LIMIT 0,3";
    if(false != ($result = mysql_query($sql))
    {
       $row = mysql_fetch_assoc($result); //Dont need the @ restraint as the result is not false above.
       //Also to get associate keys you need to use mysql_fetch_assoc
       if($video->getProperty('video_id') == $row['video_id'])) //Remove the in array as your directly comparing the to entities with ==
       {
          //Match
       }else
       {
          //Video does not match
       }
    }
    

    Your main problem was the mysql_fetch_array(), Please research the differences with mysql_fetch_array() and mysql_fetch_assoc();

    —

    Edit: The way i would go

      //Change the query and the loop way.
      $sql = "SELECT video_id FROM videos WHERE displayable='y' AND video_id != '".(int)$video->getProperty('video_id')."' ORDER BY votes desc LIMIT 0,3";
        if(false != ($result = mysql_query($sql))
        //Use the @ restraint if you have E_NOTICE on within E_Reporting
        {
           while($row = mysql_fetch_assoc($result))
           {
                //Print the $row here how you wish for it to be displayed
           }
       }else
       {
           //We have an error?
           echo '<strong>Unable to list top rated videos, please check back later.</strong>'
       }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code inside a loop: Range(N & i + 1).Formula =
I have the following loop inside an function init(); which is executed onload, I
In the following C# code snippet I have a ' while ' loop inside
Let's say I have the following JSTL loop: <c:forEach items=${foos} var=foo varStatus=status> <c:out value=${processedFoo}/>
I have following CDATA inside xml document: <![CDATA[ <p xmlns=>Refer to the below: <br/>
I have the following data inside an NSData object: <00000000 6f2d840e 31504159 2e535953 2e444446
I have the following markup inside a master page <html xmlns=http://www.w3.org/1999/xhtml > <head runat=server>
I have the following table structure inside a view which gets displayed in the
I have the following function defined inside my linked list class. The declaration in
I have the following dependency property inside a class: class FooHolder { public static

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.