Posts by Amadeus Delfino • 76 points
5 posts
-
0
votes1
answer59
viewsA: Recover errors with php and send via message
Gazing here we can easily see the methods that PHP’s Exception class has. All this information is recoverable via these methods, so just format your message the way you want! =)…
phpanswered Amadeus Delfino 76 -
3
votes1
answer52
viewsA: Talk to float ... problem
The main problem is: PHP treats float value using '.', not ','. That is, if you ask for PHP to convert "1234.56" to float, it will read up to "1234", find a comma and ignore that". To convert a…
phpanswered Amadeus Delfino 76 -
2
votes2
answers151
viewsA: How to Resolve Syntax Error
The way PHP works with string concatenation is as follows:: $var2 = "concatenado"; $var = "texto" . $var2 . "mais texto"; Note that there is a point where there are double quotation marks and the…
phpanswered Amadeus Delfino 76 -
0
votes2
answers1121
viewsA: Delete record with Laravel via AJAX
You have probably defined in your route file the verb "delete" for the specific route, since in your form you have defined this method. When you perform the action in Ajax, the request is going as…
-
1
votes1
answer123
viewsA: Packet traffic on the network
Perhaps the "man-in-the-Middle" technique is what you are looking for, since there is a "Sniffer pivot" between the sender and the recipient of the package, where this "pivot" is responsible for…
networksanswered Amadeus Delfino 76