<?php
$dbref=mysql_connect("host","user","pass");
mysql_select_db("datenbank",$dbref);
$result=mysql_query("SELECT * FROM tabelle",$dbref);$testarray=array();
for($i=0;$i<mysql_num_rows($result);$i++)
{
$testarray[$i]=array();
for($j=0;$j<mysql_num_fields($result);$j++)
{
$testarray[$i][$j]=mysql_result($result,$i,$j);
}
}print $testarray[0][4]; // --> 53
print "<br>\n";
print $testarray[1][0]; // --> 49?>
Ja! Genau das! Vielen Dank. Hast was gut (aber mit was könnte ich dir dienen?)
MfG
Michael W.