Well, not too much to go on here as I'm
also a newbie. Check everything --- spelling, code format, etc. If the
following doesn't work, then I'm stumped...
HTML Form for file delete
<FORM ACTION="script.php" METHOD=POST>
File to delete:
<INPUT TYPE=TEXT NAME="DelFile" SIZE=30><BR>
<INPUT TYPE=SUBMIT NAME="SUBMIT" VALUE="Delete this file?">
</FORM>
########### script.php ############
<?php
echo "the file to be deleted is $DelFile";
?>
#######################################
This should at least allow you to know
if you are receiving the variable from
the form, and hacks like this are
commonly used for debugging (I have lines
"echo $var;" commented out all over the
place in my scripts.....
HTH, KDK