hallo,
ich bekomme folgende fehlermeldung und wollte mal fragen ob jemand nen rat weiss:
Unable to jump to row 1 on PostgreSQL result index 3 in blaettern.php on line 40
hier das script bis line 40:
<?
$con = pg_Connect("user=m dbname=test");
$ZeilenProSeite=10;
$rubrikid = 3;
$Anfangsposition=0;
$sql="select id, rubrikid from artikel where rubrikid=$rubrikid";
$result=pg_Exec($con, $sql);
$Anzahl=pg_NumRows($result);
$sql1="$sql limit $Anfangsposition,$ZeilenProSeite";
?>
<table WIDTH="100%" >
<tr>
<td WIDTH="40%"> ID</td>
<td WIDTH="30%">RubrikID</td>
</tr>
<?
$result = pg_Exec($sql1);
while($row=pg_fetch_array($result,PGSQL_ASSOC)) {
?>
<tr>
<td WIDTH="40%"><? echo $row["id"] ?></td>
<td WIDTH="30%"><? echo $row["rubrikid"] ?></td>
</tr>
<? } ?>
</table>
btw: auf mysql läuft es, nur halt auf postgresql macht es probleme.