Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?
- $result=$this->sqli->real_query($sql);
- do {
- /* получаем первый результирующий набор */
- if ($result = $this->sqli->use_result()) {
- while ($row = $result->fetch_assoc()) {
- }
- $result->close();
- }
- unset($row);
- if (!$this->sqli->more_results())break;
- } while ($this->sqli->next_result());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement