All pastes #55078 Raw Edit

Untitled

public unlisted text v1 · immutable
#55078 ·published 2006-05-11 10:37 UTC
rendered paste body
<?php
$number = $_GET['number'];
$multiply = $_GET['multiply'];
$process = $_GET['process'];
if ($process == "%2B")
{
$output = $number + $multiply;
}
if ($process == "%2F")
{
$output = $number / $multiply;
}
if ($process == '*')
{
$output = $number * $multiply;
}
if ($process == '-')
{
$output = $number - $multiply;
}


echo $output;
?>