I changed my PHP MySQL statement to a prepared statement, and floats changed decimal point from period to comma – Phpmyadmin
I have a MySQL table with floats in it. In PHPMyAdmin, they're listed as e.g. "55.123" I used to pull them out using $sql = "SELECT latitude,longitude FROM table WHERE id=" . $id; $conn->query($sql); When I print my floats, I…