Jump to content

Tjoene

Moderators
  • Posts

    1,430
  • Joined

  • Last visited

  • Days Won

    29

Posts posted by Tjoene

  1. In the html input, you need to replace id with name.

    The name attribute is used to fill the $_POST array when sending data from a form, not the id.

    ID is used for style (CSS).

     

    Also, it is best to use some validations in the PHP code on the input, since not all browsers support the required field.

    See: http://www.w3schools.com/html5/att_input_required.asp

     

    <html>
    <form id="new_user" method="post" action="newuser.php">
      <table>
       <tr>
            <td>
             <h2>Username:</h2>
            </td>
            <td>
             <input type="text" name="user" size="20" max="20" required="required">
            </td>
       </tr>
       <tr>
            <td>
             <h2>Password:</h2>
            </td>
            <td>
             <input type="text" name="pass" size="20" max="20" required="required">
            </td>
       </tr>
       <tr>
            <td>
             <h2>Contact Email:</h2>
            </td>
            <td>
             <input type="email" name="email" size="20" max="40" required="required">
            </td>
       </tr>
       <tr>
            <td>
             <h2>Retype Email:</h2>
            </td>
            <td>
             <input type="email" name="email2" size="20" max="40" required="required">        
            </td>
       </tr>
       <tr>
            <td colspan="2">
             <h4>Additionally if you prefer contact through text messages provide your phone number and mobile carrier</h4><h5>(For US only)</h5>
            </td>
       </tr>
       <tr>
            <td>
             Phone:<input type="tel" name="tele">
            </td>
            <td>
             Carrier:<input type="text" size="20" name="carrier">
            </td>
       </tr>
       <tr>
            <td colspan="2">
             <h4>Finally please provide your birthdate to give a demographic statistic.</h4>
            </td>
       </tr>
       <tr>
            <td>
             <h2>Birthday</h2>
            </td>
            <td>
             <input type="date" name="bday">
            </td>
       </tr>
       <tr>
            <td colspan="2"><input type="submit">
       </tr>
      </table>
     </form>
    </html>
    

  2. Your were suspended for the following reason: Malware (1 file) Joke.Hikaru FOUND found.

    That means that there are some malware files found on your account.

     

    For your safety, your account has been suspended.

    You need to clean your files within 24 hours, or you will be suspended again.

     

    To find the infected files you can take a backup of your site, download the files to your computer and scan the files using a virus- and mall-ware scanner like AVG Virus scanner and Malwarebytes.

    If you are you certain that it is a false-positive, we strongly encourage you to file a false positive form here: http://cgi.clamav.net/sendvirus.cgi

     

     

    Your account should be unsuspended now.

  3. Your were suspended for the following reason: Malware (4 files) PHP.C99-14 found.

    That means that there are some malware files found on your account.

     

    For your safety, your account has been suspended.

    You need to clean your files within 24 hours, or you will be suspended again.

     

    To find the infected files you can take a backup of your site, download the files to your computer and scan the files using a virus- and mall-ware scanner like AVG Virus scanner and Malwarebytes.

    If you are you certain that it is a false-positive, we strongly encourage you to file a false positive form here: http://cgi.clamav.net/sendvirus.cgi

     

     

    Your account should be unsuspended now.

  4. Your were suspended for the following reason: Malware (1 file) Trojan.Spy.Banker-5850 found.

    That means that there are some malware files found on your account.

     

    For your safety, your account has been suspended.

    You need to clean your files within 24 hours, or you will be suspended again.

     

    To find the infected files you can take a backup of your site, download the files to your computer and scan the files using a virus- and mall-ware scanner like AVG Virus scanner and Malwarebytes.

    If you are you certain that it is a false-positive, we strongly encourage you to file a false positive form here: http://cgi.clamav.net/sendvirus.cgi

     

     

    Your account should be unsuspended now.

×
×
  • Create New...