Guest Magavilha Posted February 26, 2004 Report Share Posted February 26, 2004 Bom, eu tenho um valor que é chamado pelo$valorBem, eu gostaria de fazer assim, como fazer com que o valor seja chamado e remova 1 dele, tipow:Chamou 1000, vai mostrar pro usuario 999! Quote Link to comment Share on other sites More sharing options...
0 ppgsalomao Posted February 26, 2004 Report Share Posted February 26, 2004 <?php$temp = $valor - 1;echo $temp;?> Quote Link to comment Share on other sites More sharing options...
0 John Doe Posted February 26, 2004 Report Share Posted February 26, 2004 Ó, num tenho certeza, mas tenta isso:pagina.php <? if(isset($_POST[enviar])) { $num = $_POST[num]; settype($num,"int"); echo $num-1; } else { ?> <html> <head> </head> <body> <form action="pagina.php" method="POST"> Digite um número: <input type="text" name="num"><br> <input type="submit" name="enviar" value="substrair 1"> </body> </html> <? } ?> Quote Link to comment Share on other sites More sharing options...
0 gladiador Posted February 26, 2004 Report Share Posted February 26, 2004 /*O John já respondeu mais pode ser assim também :não a mesma coisa viajei , desculpem + num deu pra deletar mandei o post antes */ Quote Link to comment Share on other sites More sharing options...
0 Felipe_Lopes Posted February 26, 2004 Report Share Posted February 26, 2004 $valor-1 como falaram ou entaum usa o decrescimo:$valor--; Quote Link to comment Share on other sites More sharing options...
0 Black Dragon Posted February 26, 2004 Report Share Posted February 26, 2004 Óia, aproveitando a boa vontade desse tópico, aki vai uma pergunta meio n00b:Se o $valor pego for "0(zero)", eu posso mudar pra pra uma mensagem, tipow, aparecendo numa pagina php -> Valor Atual = NenhumQ eu me lembre tem uns troço com IF e ELSE nisso, mas já q faz tempo q eu tow afastado de php (muito tempo), tem como alguém dar uma mão para o amigo Ninja( ) Black Dragon? Quote Link to comment Share on other sites More sharing options...
0 M@luco Belez@ Posted February 26, 2004 Report Share Posted February 26, 2004 if ($valor == 0) {$valor = "o valor é 0";} else {$valor = $valor;}echo $valor; Quote Link to comment Share on other sites More sharing options...
Question
Guest Magavilha
Bom, eu tenho um valor que é chamado pelo
$valor
Bem, eu gostaria de fazer assim, como fazer com que o valor seja chamado e remova 1 dele, tipow:
Chamou 1000, vai mostrar pro usuario 999!
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.