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 8417821
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T02:09:16+00:00 2026-06-10T02:09:16+00:00

Why is this warning occuring when I am using IE? Warning: Invalid argument supplied

  • 0

Why is this warning occuring when I am using IE?

Warning: Invalid argument supplied for foreach() 

It works in all other browsers..

The function for the loop:

function wdsearch(PDO $dbh){
    if(!isset($_POST['wdsubmit'])) {
    } else {
        $term = $_POST['wdsearchvalue'];
        $stmt = $dbh->prepare("
            SELECT      *
            FROM        posts
            WHERE       category = :designer
            AND         (full_text LIKE CONCAT('%', :term, '%')
            OR          heading LIKE CONCAT('%', :term, '%'))
            ORDER BY    post_date DESC
        ");
        $designer = 'Designer';
        $stmt->bindParam(":designer", $designer);
        $stmt->bindParam(":term", $term);
        $stmt->execute();
        return $stmt->fetchAll();
    }
}
wdsearch($dbh);
$wdsearch = wdsearch($dbh);

And the loop goes here..

<?php foreach($wdsearch as $wds) : ?>
<!-- HTML here -->
<?php endforeach; ?>

Any possible IE related warnings? Like I said all other browsers can handle it..

  • 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-06-10T02:09:17+00:00Added an answer on June 10, 2026 at 2:09 am

    The specified error is occurring in your PHP code, not in any specific browser.

    The issue is, the datatype of $wdsearch, does not implement an iterator. This could be caused by $wdsearch being null, a string/number/etc. – or simply an unsupporting object.

    Try verifying if the data is an array before going into the foreach loop with is_array($wdsearch), or verify the variable is not null with isset($wdsearch). If you believe there is valid data there, check to see if the object in $wdsearch actually supports iterators and, if not, update it to implement!

    Example:

    <?php
    if (isset($wdsearch)):
        foreach($wdsearch as $wds) :
            ?>
            <!-- HTML here -->
            <?php
        endforeach;
    endif;
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Another cry for help about this warning. First of all I have looked at
I am getting this warning even though i am using webxml in my ANT
I'm getting this warning all over the place in some perfectly well functioning objective-c
Does anyone know what this warning means? It is followed by the error: Command
I got this warning: 'UIView' may not respond to 'addSubview:withAnimation:' The line of code
I only get this warning if I import my helper class (#import JLHelper.h). An
I am getting this warning from FxCop: 'RestartForm' contains field 'RestartForm.done' that is of
I cant understand what this warning I get on Xcode is about. Searching for
I get this: Warning: session_start(): Cannot send session cookie - headers already sent by
I get this warning in my error logs and wanted to know how to

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.