Note that there are some explanatory texts on larger screens.

plurals
  1. USBenno
    primarykey
    data
    text
    plurals
    1. COSafari has its 'Web inspector' built in. Just go to the 'Develop' menu (or preferences >advanced>show develop toolbar then go to develop). Then when thats open just go to the Console tab. Which version of safari do you have? Because that code works in my safari? http://jsfiddle.net/7eRfm/1/ Also just a note, it's 70% faster to use the attribute selector, `input[type=radio]` instead of `input:radio` (the pseudo selector). See http://jsperf.com/pseudo-selector-vs-attribute-selector. You can chain attribute selectors as well e.g. `input[type=radio][name=radio1]` for greater performance.
      singulars
    2. COIf you're trying to dump the xml data to the page you're on (`phpsqlsearch_genxml.php`), you need to specify $_GET parameters, because you pass in $_GET variables (line 4-6) to the search query (line 27-30). So E.G. If you are opening that page at `/demo/map/phpsqlsearch_genxml.php`, you need to load this URL instead: `/demo/map/phpsqlsearch_genxml.php?lat=127.4364636&lng=26.23523&radius=50` (except change to other lat/lng params that are in your database). E.G. $_GET['radius'] is 50 here. That will then set the lat, lng and radius parameters that your query uses to return the information.
      singulars
    3. COThat just means something has been outputted to the page before you set the content-type... It could be a space, a tab or anything that you echo out before you set the content-type. You don't have a space before the <?php ? in your file?
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload