Skip to content

Instantly share code, notes, and snippets.

@mrchrisadams
Created June 23, 2010 23:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrchrisadams/450713 to your computer and use it in GitHub Desktop.
Save mrchrisadams/450713 to your computer and use it in GitHub Desktop.
<form action="<exec> echo $thisPage; </exec>" method="post">
Your wage:
<input name="wage" type="text" />£/year
<input name="submit" type="submit" value="Calculate Footprint" /> </form>
<exec>
if(isset($_POST['submit'])){
$wage = $_POST['wage'];
$footprint = 0.37*$wage;
echo "<h1>Your Carbon Footprint: ". $footprint . " kg/year</h1>";
}
</exec>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment