Sorry, that was a typo. My problem comes from when register_globals is turned off. I can not settle for the quick fix of turning it on. Is there a different way to access form_data, kinda like how I access $_POST['form_description']. Thank you.
<form method="post" action="index.php" enctype="multipart/form-data">
File Description:<br>
<input type="text" name="form_description" size="40">
<input type="hidden" name="MAX_FILE_SIZE" value="1000000">
<br>File to upload/store in database:<br>
<input type="hidden" name="cmd" value="downloads">
<input type="hidden" name="p" value="add2">
<input type="file" name="form_data" size="40">
<p><input type="submit" name="submit" class="button" value="Add Download">
</form>