I would like to find a value of a certain row and column field. I know I can to this;
$variable = mysql_result($result,rownumber,"field");
But I think that solution is too long when you have a lot of columns. Is there any solution "like" this?
$row=mysql_fetch_array($result);
$variable = $row['field'][row];
Any ideas are appreciated!
Thanks / Henrik
$variable = mysql_result($result,rownumber,"field");
But I think that solution is too long when you have a lot of columns. Is there any solution "like" this?
$row=mysql_fetch_array($result);
$variable = $row['field'][row];
Any ideas are appreciated!
Thanks / Henrik