php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #64619 mysql_query issue
Submitted: 2013-04-10 05:08 UTC Modified: 2013-04-10 19:14 UTC
From: clone_12 at ymail dot com Assigned:
Status: Wont fix Package: MySQL related
PHP Version: 5.4.13 OS: Linux/Windows
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: clone_12 at ymail dot com
New email:
PHP Version: OS:

 

 [2013-04-10 05:08 UTC] clone_12 at ymail dot com
Description:
------------
using two or more procedure in php 4

Test script:
---------------
$sql = mysql_query("CALL emp_master_list();");
	while($row = mysql_fetch_array($sql)){$x++;}
echo "$x <hr/>";

$sql = mysql_query("SELECT * FROM employee_information");
	while($row = mysql_fetch_array($sql)){$v++;}
echo "$v <hr/>";

$sql = mysql_query("CALL emp_master_list();");
	while($row = mysql_fetch_array($sql)){$z++;}
echo "$z <hr/>";

Expected result:
----------------
functions/fix bug

Actual result:
--------------
error

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2013-04-10 09:13 UTC] aharvey@php.net
We are sorry, but we can not support PHP 4 related problems anymore.


 [2013-04-10 09:13 UTC] aharvey@php.net
-Status: Open +Status: Wont fix -Package: *General Issues +Package: MySQL related
 [2013-04-10 19:14 UTC] sixd@php.net
Please log bugs with descriptive subject line.  Be clear about the environment 
and the actual output.
 [2013-04-10 19:14 UTC] sixd@php.net
-Summary: Functions +Summary: mysql_query issue
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Dec 26 18:01:31 2024 UTC