Jump to content

$a = mysql_result( $b, 0, $c); - does not work


jasonc

Recommended Posts

i am wanting to use the following code but it is not working as i thought it would.

 

instead of hard coding the field name in the script i wish to have it insert using a variable like below.

 

what is the correct way i should do this.

 

$c= "fieldname";

$a = mysql_result( $results, 0, $c);

Link to comment
Share on other sites

but i tried that as in my first post, and it did not work

$c= "fieldname";

$a = mysql_result( $results, 0, $c);

 

Warning: mysql_result(): supplied argument is not a valid MySQL result resource in line

$a = mysql_result( $results, 0, $c);

 

 

$c = "username";

 

and there is a field in the mysql database called "username"

Link to comment
Share on other sites

Warning: mysql_result(): supplied argument is not a valid MySQL result resource in line

 

Would have been helpful to quote this error earlier. $results 'is not a valid MySQL result resource'. Try amending to the end of your mysql_query() call:

 

or trigger_error('MySQL error: ' . mysql_error());

 

Make sure you don't have a semi-colon before 'or'.. i.e. "; or trigger(...)"

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.