Guest User

Untitled

a guest
Jun 8th, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. Sign-up.html:
  2.  
  3. <Form Name = "Signup" Method ="POST" ACTION = "create.php">
  4. <input type= "TEXT" VALUE ="Server Name" NAME ="username">
  5. <input type= "TEXT" VALUE ="Server IP" NAME ="ip">
  6. <INPUT TYPE = "Text" VALUE ="Server Port" NAME = "port">
  7. <INPUT TYPE = "Text" VALUE ="Email" NAME = "email">
  8. <INPUT TYPE = "Text" VALUE ="Password" NAME = "pass">
  9. <select name= "loader"><option value= "1" value ="Project Insanity"></option>
  10. <INPUT TYPE = "Submit" Name = "create" VALUE = "Create">
  11.  
  12. _____________________________________________________________________________________________________
  13.  
  14. create.php:
  15.  
  16. <?php
  17.  
  18. $_POST['formElement_name'];
  19. $Server_Name = $_POST['formElement_name'];
  20. $Server_IP = $_POST['formElement_ip'];
  21. $Server_Port = $_POST['formElement_port'];
  22. $Email = $_POST['formElement_email'];
  23. $Password = $_POST['formElement_pass'];
  24.  
  25. if (isset($_POST['Submit1'])) { }
  26.  
  27. $mysql_host = "mysql17.000webhost.com";
  28. $mysql_database = "a6108940_fuber";
  29. $mysql_user = "a6108940_nessie";
  30. $mysql_password = "nessie9";
  31.  
  32.  
  33.  
  34. ?>
Add Comment
Please, Sign In to add comment