hi.
There seems to be a problem with enctype=multipart/form-data because when I add it in, the form returns nothing. If I take it out, the page prints out 'yay'
Here's the code:
<?php
if($_POST['submitted']==TRUE){
echo "yay";
}
?>
<form enctype="multipart/form-data" action="turnin.php?s=1" method="post">
<input type="hidden" name="submitted" value="TRUE" />
<fieldset><legend>Upload your project</legend>
<input type="hidden" name="MAX_FILE_SIZE" value="200900000000">
<p><b>File:</b> <input type="file" name="upload">
</fieldset>
<div align="center"><input type="submit" name="submit" value="Submit" /></div>
</form>



