<div dir="ltr">I have a set of buttons for each letter of the alphabet<br>.<br>.<br><br>&lt;a href=&quot;{_SERVER[&#39;PHP_SELF&#39;]}?_letterA&quot;&gt;F&lt;/a&gt;  <br>&lt;a href=&quot;{_SERVER[&#39;PHP_SELF&#39;]}?_letterB&quot;&gt;G&lt;/a&gt;  <br>&lt;a href=&quot;{_SERVER[&#39;PHP_SELF&#39;]}?_letterC&quot;&gt;H&lt;/a&gt;  <br>.<br>.<br><br>I want to respond to the button press and set<br>$letter=&#39;A&#39;;  <br>if some one presses the button for A, and <br>$letter=&#39;B&#39;; <br>if some one presses button for B, etc.<br><br>I would rather not write 26 if statements such as<br>if (isset($_GET[&#39;_letterA&#39;])) {<br>   $letter=&#39;A&#39;;<br>} else if ......<pre id="line1"><span>Is there a way to do this using regular expressions?<br><br>------------<br></span></pre><pre id="line1"><span>Vince<br><br></span></pre></div>