php - Display specific line or record of a recordset -


say have recordset, lets call $rsrecordset. lets has data in so:

1 2 3
4 5 6
7 8 9

now want display, example, 5. how might that? i've read lot seems structured so:

echo $rsrecordset[1][1]; 

but life of me can't make work. suggestions?

since jk hasn't returned, guess i'm answering myself.

the following boy:

<?php echo mysql_result($rsrecordset, 1, 2); ?> 

again, if jk returns happily give him tick. if not i'll apply myself tomorrow, since technically joint effort anyway.


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

android - layout with fragment and framelayout replaced by another fragment and framelayout -