Jump to content

Not recognizing hitting the submit button


aeroswat

Recommended Posts

Wondering why this isn't recognizing when the submit button is pressed... it works on all my other forms but never on this form.

 

<?php
if(isset($_POST['submit'])) {

echo "Button pressed";
}else{
?>

<form enctype="multipart/form-data" action="" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="50000000" />
Choose a file to upload: <input name="ufile" type="file" /><br />
<input type="submit" value="Upload File" name="submit"/>
</form>
<?php
}
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.