Jump to content

mysql_fetch_assoc() help


AE117

Recommended Posts

I have been looking into this and I can find a definite answer.

 

I was wondering if i call a query

 

$query = mysql_query("SELECT * FROM table_name")

$rows = mysql_fetch_assoc($query)

which returns 50 results

 

can I call and echo a certain result. Lets say I want to echo result number 5 of the 50.

 

I have no idea how to go about this so I was just hoping someone could lead me in the right direction.

Link to comment
Share on other sites

That is exactly what I am try to prevent. I dont want to have to call multiple queries to get a set of results. so if the results is to call the to a table

 

id      color

 

1  green

2  red

3  green

 

and get all the green items. I want to be able to store them in an array and then call from that array the results i need. So in this case the array should hold

key  id    color

[1]    1    green

[2]    3    green

 

then i can call key 2 which would give me the values under that. I just dont know how to do it. I am still looking into it but it appears that arrays and a push statement is on the right track

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.