Jump to content

mysql_fetch_assoc warning


php_begins

Recommended Posts

I have the following code

			$hidden_client_id_query = mysql_query("SELECT id from `pdp_client_info` WHERE lead_id='$post_lead_id'");
		$hidden_client_id=mysql_fetch_assoc($hidden_client_id_query);
		$this->view->hidden_client_id=$hidden_client_id['id'];

I get the following error for the above code. I wonder where I am wrong. I am getting the $post_lead_id as expected.

Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean

Link to comment
Share on other sites

My bad..That was a database access problem in the ZEND framework. I had to modify my code according to the settings in my framework.

			$hidden_client_id_query = $this->db->query("SELECT id FROM pdp_client_info WHERE lead_id='$post_lead_id'");
		$hidden_client_id=$hidden_client_id_query->fetch();
		$this->view->hidden_client_id=$hidden_client_id['id'];

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.