Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Try This:</p> <pre><code>&lt;form action="" method="post"&gt; &lt;ul id="register"&gt; &lt;li&gt;&lt;input type="text" name="first_name" placeholder="First Name"&gt;&lt;/li&gt; &lt;li&gt;&lt;input type="text" name="last_name" placeholder="Last Name"&gt;&lt;/li&gt; &lt;li&gt;&lt;input type="email" name="email" placeholder="Email"&gt;&lt;br&gt;&lt;br&gt;&lt;/li&gt; &lt;li&gt;&lt;input type="password" name="password" placeholder="Password"&gt;&lt;/li&gt; &lt;li&gt; &lt;input type="radio" name="sex" value="male"&gt;Male &lt;input type="radio" name="sex" value="female"&gt;Female &lt;/li&gt; &lt;li&gt; Birthday: &lt;select name="month"&gt; &lt;option value=""&gt;Choose&lt;/option&gt; &lt;option value="January"&gt;January&lt;/option&gt; &lt;option value="February"&gt;February&lt;/option&gt; &lt;/select&gt; &lt;select name="day"&gt; &lt;option value=""&gt;Choose&lt;/option&gt; &lt;option value="1"&gt;1&lt;/option&gt; &lt;option value="2"&gt;2&lt;/option&gt; &lt;/select&gt; &lt;select name="year"&gt; &lt;option value=""&gt;Choose&lt;/option&gt; &lt;option value="2012"&gt;2012&lt;/option&gt; &lt;option value="2013"&gt;2013&lt;/option&gt; &lt;/select&gt;&lt;br&gt;&lt;br&gt; &lt;/li&gt; &lt;li&gt;&lt;input type="checkbox" name="terms_of_service" value="termsofservice"&gt;Terms of Service&lt;br&gt;&lt;br&gt;&lt;/li&gt; &lt;li&gt;&lt;input type="submit" name="registrationform" value="Sign up"&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/form&gt; &lt;?php if (!empty($_POST)) { $required_fields = array('first_name', 'last_name', 'email', 'password', 'sex', 'month', 'day', 'year', 'terms_of_service'); foreach ($required_fields as $value) { if (empty($_POST["$value"])) { $errors .= "$value is required&lt;br&gt;"; } } echo $errors; } ?&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload