Strict Standards: mysqli_next_result() error with mysqli_multi_query

While pipodesign corrected the error within the $querystring and alleviated the problem, the actual solution was not provided regarding the Strict Standards error. I disagree with SirBT’s advice, changing from DO WHILE to WHILE is not necessary. The Strict Standards message that you receive is quite informative. To obey, use this: do{} while(mysqli_more_results($db) && mysqli_next_result($db)); … Read more