getting previous variables?

admin

Administrator
Staff member
I want to get information from variables that I磛e searched from before, why don磘 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=http://www.phpbuilder.com/board/archive/index.php/"<? echo $myrow[3]; ?>" name="depot" size="8"></td>
 
Back
Top