Calculadora em PHP simples
Publicado por rafael farias novaes 14/07/2009
[ Hits: 22.518 ]
Homepage: http://www.vivaolinux.com.br/perfil/verPerfil.php?login=bfmano
Uma simples calculadora...
<?php //////////////////////////// //// Calculadora em PHP //// /// by Rfarias /// // <mano_rk@hotmail.com> // //////////////////////////// ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Calculadora criada por Rfarias - mano_rk@hotmail.com</title> <style type="text/css"> td { color: #FFFF00; font-weight: bold; text-align: center; border: 1px solid #000099; } input#calc { background-color: #759475; text-align: right; color: #222722; border-color: #000099; } table#calculadora { border: 1px solid #000099; background-color: #3300cc; } #titulo { font-family: arial, verdana, sans serif; font-size: 1em; font-weight: bold; text-align: center; } </style> </head> <body> <?php class calculadora { var $nums = ''; var $calc = ''; var $op = ''; function mostrar () { $num = @$_GET['num'][0]; $calc = @$_GET['calc']; if(empty( $num ) AND empty( $calc )) { return false; } if(!isset( $display )) { $display = $calc; } $this->nums .= empty( $num ) ? $display : $display.$num; $this->setOperacao(); if(!empty( $this->op )) { $this->calc = $this->nums.rawurldecode( $this->op ).$num; } return $this->calcular(); } function setOperacao () { if(!empty( $_GET['op'] )) { $this->op = $_GET['op']; } } function calcular() { $calc = empty( $this->calc ) ? $this->nums : $this->calc; if(isset( $_GET['resultado'] )) { if(preg_match( '/^([0-9]+)(\/|\*|\+|\-)([0-9]+)+$/', $calc, $match )) { switch( $match[2] ) { case "+": return $match[1]+$match[3]; break; case "-": return $match[1]-$match[3]; break; case "/": return $match[1]/$match[3]; break; case "*": return $match[1]*$match[3]; break; } } else { return "Ocorreu um erro"; } } return $calc; } } $calc = new calculadora(); ?> <form action="" method="get"> <!-- Calculadora criada por Rfarias <mano_rk@hotmail.com> --> <table id="calculadora" cellpadding="10" cellspacing="0" align="center"> <tr> <td align="center" colspan="4"> <span id="titulo">Calculadora</span><br/> <input id="calc" type="text" name="calc" value="<?=$calc->mostrar();?>" /> </td> </tr> <tr> <td> <input type="submit" name="num[]" value="7" /> </td> <td> <input type="submit" name="num[]" value="8" /> </td> <td> <input type="submit" name="num[]" value="9" /> </td> <td> <input type="submit" name="op" value="/" /> </td> </tr> <tr> <td> <input type="submit" name="num[]" value="4" /> </td> <td> <input type="submit" name="num[]" value="5" /> </td> <td> <input type="submit" name="num[]" value="6" /> </td> <td> <input type="submit" name="op" value="*" /> </td> </tr> <tr> <td> <input type="submit" name="num[]" value="1" /> </td> <td> <input type="submit" name="num[]" value="2" /> </td> <td> <input type="submit" name="num[]" value="3" /> </td> <td> <input type="submit" name="op" value="-" /> </td> </tr> <tr> <td> <input type="submit" name="num[]" value="0" /> </td> <td> <input type="submit" name="num[]" value="." /> </td> <td> <input type="submit" name="resultado" value="=" /> </td> <td> <input type="submit" name="op" value="+" /> </td> </tr> </table> </form> </body> </html>
gerando links de todos aquivos de um diretorio
Apresentação da data em um formato mais agradavel.
Instalar e Configurar o Slackware Linux em 2025
Como configurar os repositórios do apt no Debian 12 em 2025
Passkeys: A Evolução da Autenticação Digital
Instalação de distro Linux em computadores, netbooks, etc, em rede com o Clonezilla
Configurando o Conky para iniciar corretamente no sistema
3 configurações básicas que podem melhorar muito a sua edição pelo editor nano
Como colorir os logs do terminal com ccze
Instalação Microsoft Edge no Linux Mint 22
Como configurar posicionamento e movimento de janelas no Lubuntu (Openbox) com atalhos de teclado
Jogando com Proton no LInux (0)
Ingress NGINX Controller CVSS base score of 9.8 (4)
Impossível corrigir problemas, você manteve (hold) pacotes quebrados. (2)