Simple Open Dialog Box

A Dialog window is an independent sub-window meant to open temporary form apart from the main Swing Application Window. Most Dialog present an error message or warning to a user, but Dialog box can present images, directory trees, or just about anything compatible with the main Swing Application that manages them. And I will show you the simple dialog box in PHP.

Sample Code

Form script for dialog box
  1. <form enctype="multipart/form-data" action="#" method="POST">
  2. <input type="hidden" name="MAX_FILE_SIZE" value="30000" />
  3. <div><div class="glyphicon glyphicon-th"></div>
  4. <h3 align="center">OPEN DIALOG</h3>
  5. </div><br/><br/><b>Send This File:<br /><input class="btn btn-info" name="userfile" type="file" />
  6. <input class="btn btn-info" type="submit" value="Send File" style="margin-top: 10px;" />
  7. </form>
ResultResult Kindly click the Download Code button below for full source code. Thank you very much.

Add new comment