Posts by ricardo.reksystem • 29 points
3 posts
-
2
votes2
answers70
viewsA: Extract portion of characters using PHP
I hope the code below helps you friend! function apenasNumero($valor) { $num = preg_replace( '/[^0-9]/is', '', $valor ); //preg_replace( '/[^0-9]/is... retira tudo que não for número return $num; }…
-
-1
votes2
answers71
viewsA: while is not running from the start
Good night. In the code you posted there’s a key you’re not opening //this one down here where I left it in bold } while(stop != 0); }
-
1
votes1
answer49
viewsA: What do you do when this happens?
Well, let me get this straight... you receive data from an example form: name,Cpf, request, category in case you want to save name and Cpf in a table and request and category in another correct?…