Can anyone see an error here: echo "<input type=\"hidden\" name=\"filen\" value=\"",stripslashes($filen),"\">\n";
My problem is that some of the string is printed in the browser (read type='hidden')
thanks, Thomas Andersen
well, are there any quotes (") in the string you are reading in? and do you have:
". stripslashes($filen) ."
with periods or do you have:
", stripslashes($filen) ,"
with commas? it should be periods and they look like commas.
Yes there is " in the string. Commas works I've heard,
Thomas A