Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

A simple calculator


<form method="GET">
<table>
<tr><td>Value:</td><td><input name="a" ></td></tr>
<tr><td>Value:</td><td><input name="b"  ></td></tr>
<tr><td></td><td><input type="submit" value="+"></td></tr>
</table>

<?php
print "Result: $_GET[a]+$_GET[b]=";
print $_GET[a] + $_GET[b];
?>