Posts by lleitep3 • 98 points
5 posts
-
0
votes1
answer76
viewsA: I don’t get Json return in Ajax with PHP
Dude, I still have to declare the header. In the penultimate line of your php file puts this : header('Content-Type: application/json');
-
0
votes3
answers118
viewsA: Media Querie is not compatible with Internet Explorer 2014
http://caniuse.com/#feat=css-mediaqueries As the site above shows, only from IE9 that media queries are supported. However there is a project found in google code that I supplied as faulback that…
-
4
votes5
answers6237
views -
3
votes2
answers911
viewsA: Refresh-free browsing
the property window.location returns information about the current url you can capture the calling hash window.location.hash execute this command on your browser console. var hash =…
-
1
votes2
answers905
viewsA: Google Maps with file_get_contents error. What can it be?
Maybe your server is with the file_get_contents blocked. There are two security settings on php.ini that block the use of file_get_contents. They are: allow_url_fopen and allow_url_include Make sure…