[PHP] Unable to Jump Row ?!?

2002-01-17 Thread Phil Schwarzmann
I keep getting this damn error message from MySQL even though it displays the correct results. Here is the error... Warning: Unable to jump to row 1 on MySQL result index 2 in /blahblahblah/patient/display_search_results.php on line 39 Here is the code on line 39 $d =

[PHP] Unable to Jump Row ?!? -- NEVERMIND

2002-01-17 Thread Phil Schwarzmann
..I figured it out.

RE: [PHP] Unable to Jump Row ?!?

2002-01-17 Thread Jason Murray
Here is the error... Warning: Unable to jump to row 1 on MySQL result index 2 in /blahblahblah/patient/display_search_results.php on line 39 This means that the query you executed didn't return enough rows to count up to ... 1. Here is the code on line 39 $d = mysql_result($result,

RE: [PHP] Unable to Jump Row ?!?

2002-01-17 Thread Jason Murray
Here is the code on line 39 $d = mysql_result($result, $c, id); the field id is an auto_increment column. $c is an exsisting row in the query, $result. Any help? Yes, it looks like $result doesn't contain anything, so maybe your SQL is messed up. Oh yes, additionally