> <div><input name="mp3file<? echo $x;?>" type="text" id="mp3file<? echo
> $x;?>" size="50" /></div>
Hello,
I'll probably get this half wrong but I suspect you need something like:
$prefix="mp3file";
...
print("<input name=".${$prefix.$x}."etc......");
or something like $$x
jas