Jump to content

Recommended Posts

I am writing an app where im using PHP to parse out a file then i need to push some of the parsed file to a javascript function (google maps javascript to be exact)

 

 

PHP SECTION

<?php

while(!feof($file))

{

  $line = fgets($file);

 

  $temp = explode(" ", $line);

 

  if ($temp[0]=="latitude:")

    {

  $lat = $temp[1];

  echo $lat;

 

}

 

  if ($temp[0]=="longitude:")

    {

  $long = $temp[1];

  echo $long;

 

}

}

fclose($file);

?>

 

Javascript Function

function initialize() {

      if (GBrowserIsCompatible()) {

        var map = new GMap2(document.getElementById("map_canvas"));

        map.setCenter(new GLatLng(37.4419, -122.1419), 13);  I need my php variables to replace these numbers

      }

    }

 

Thanks for the help :)

Link to comment
https://forums.phpfreaks.com/topic/99079-sending-php-variables-to-javascript/
Share on other sites

try this

function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(<?php echo $lat;?>, <?php echo $long;?>), 13);  I need my php variables to replace these numbers
      }
    }

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.