I tried this, but it doesnt work;
$result=mysql_query("SELECT * FROM value", $db); $row=mysql_fetch_arry($result); ?> <INPUT TYPE=text CLASS=submit NAME=teletrade VALUE=<? echo $row['antal'][4] ?>>
Any suggestions?
Read the manual about the mysql_data_seek function.
Mysql_fetch_array returns one row. If you want row 5 use mysql_data_seek() to move to the 5th row and mysql_fetch_array to fetch it.