Posts by PeerBr • 222 points
5 posts
-
1
votes1
answer387
viewsA: How do I convert these strings to PHP?
The function utf8_encode() should be called iso88591_to_utf8() so as not to confuse. In your case, you do not need to use this function, as your data is already in UTF-8. It is good to leave your…
-
2
votes1
answer224
viewsA: The ref attribute of an element of the xml schema document
Your XSD validates the following XML: <?xml version="1.0" encoding="UTF-8"?> <solicitacao xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"…
-
3
votes2
answers520
viewsA: Check where the POST came from
For any measure of yours, think of two savings: First, cost of doing nothing (high for a bank, low for a blog) vs. cost of measurement (development, maintenance, friction for legitimate users).…
-
2
votes1
answer63
viewsA: Fetch data from Mysql in Postgresql
No. A DBMS, by definition, is the place where the data is saved in a specific format, and a method of interacting with the data. You can: Convert Postgresql data to Mysql permanently Using an…
-
1
votes2
answers1751
viewsA: Xampp - access by Android
You are accessing a XAMPP installation installed on your local network, not on your mobile phone. This could even happen with a device on which you can’t install anything, like a TV or an old phone.…