Posts by Felipe F. de Paula • 36 points
4 posts
-
1
votes1
answer39
viewsA: Bugando Bank Field with Thousand values
In the value field you have to: Remove "R$" Remove "." Exchange "," for "." $value_total = (float) str_replace(",", "." , str_replace(["R$", ", "." ], "", $_POST['total_request'])); **You are using…
-
0
votes1
answer34
viewsA: Search result via web service
You can take the pure Json and perform the "parse" let jsonData = jsonRetorno.parse(); And then you can use the Json object: console.log(jsonData.titulo); console.log(jsonData.nome);…
-
0
votes4
answers167
viewsA: Help with PHP and htacess Friendly URL
I’m adding a new answer with code to be tested <?php $arrUri = explode("/", $_SERVER['REQUEST_URI']); switch ($arrUri[1]) { case 'home': include 'home.php'; break; case 'contato': include…
-
1
votes4
answers167
viewsA: Help with PHP and htacess Friendly URL
You can take the URI $_SERVER['REQUEST_URI']; And work on it to suit you. Make a explode by / check which will be the Dice in which the domain ends and the next vc know it will be the controller and…