I want to get information from variables that I´ve searched from before, why don´t I get a value in myrow[3]?
<?
$result = mysql_query("SELECT * FROM bokare",$db);
while ($myrow = mysql_fetch_row ($result)) {
printf("%s\n", $myrow[2]);
}
echo "";
?>">
later in script
<td width="6%" align="center"><input class=inputtext maxlength=7 type="text" value="<? echo $myrow[3]; ?>" name="depot" size="8"></td>