CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of restar
<form action="procesar.php" method="get">
Primer valor: <input type="text" name="valor1" />
Segundo valor: <input type="text" name="valor2" /><br />
<input type="radio" name="radio" value="sumar" />Sumar<br />
<input type="radio" name="radio" value="restar" />Restar<br />
<input type="radio" name="radio" value="dividir" />Dividir<br />
<input type="submit" name="enviar" value="Enviar">
</form>
by M1ST3R10   December 03, 2010 @ 12:53pm
131 Views
no comments
 
<?php
if ($_REQUEST['radio'] == "sumar"){
    $suma = $_REQUEST['valor1'] + $_REQUEST['valor2'];
    echo $suma;
    } elseif ($_REQUEST['radio'] == "restar"){
    $resta = $_REQUEST['valor1'] - $_REQUEST['valor2'];
    echo $resta;
    } elseif ($_REQUEST['radio'] == "dividir"){
        $dividir = $_REQUEST['valor1'] / $_REQUEST['valor2'];
        echo $dividir; }
by M1ST3R10   December 03, 2010 @ 12:53pm
128 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate