Halfar Posted October 28, 2006 Report Share Posted October 28, 2006 O código abaixo está retornando o seguinte erro:Warning: mysql_data_seek() [function.mysql-data-seek]: Offset 12 is invalid for MySQL result index 4 (or the query data is unbuffered) $sql = "Select * from Indices where AnoMes >= '".$Inicio."' and AnoMes <= '" . $Final . "' and Indice = '".$xIndice."'";$Res = mysql_query($sql) or die("Erro2");for ($i = mysql_num_rows($Res) - 1; $i >= 1; $i++){ if(mysql_data_seek($Res, $i)){ $linha = mysql_fetch_assoc($Res); echo $linha["Valor]; }else{ exit; }} Quote Link to comment Share on other sites More sharing options...
0 mbleonardo Posted October 28, 2006 Report Share Posted October 28, 2006 o mysql_data_seek só funciona com mysql_fetch_row() (não fetch_array ou fetch_assoc) Quote Link to comment Share on other sites More sharing options...
Question
Halfar
O código abaixo está retornando o seguinte erro:
Warning: mysql_data_seek() [function.mysql-data-seek]: Offset 12 is invalid for MySQL result index 4 (or the query data is unbuffered)
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.