Update 2: Ben kundakçı içinde ayıklama fonksiyonunu kullandım asla, ama sadece komut bölümüne baktı ve ben bu olsun, şimdi ben denemek ve bu anlamaya olacaktır.
Failed to load source for: http://localhost/googleMap/phpsqlajax_genxml.php
, Hiya
I followed this tutorial below http://code.google.com/apis/maps/articles/phpsqlajax_v3.html#outputxml
I ran into trouble, near then end, I am hoping someone else here has got this working and can help me discover my problem. Simply there are 4 steps to this tutorial
- Tablo oluşturma
- Tablo doldurmamak
- PHP ile XML çıktısı
- Haritası Oluşturma
I successfully have completed all the steps, however the outputted xml isn't read by the google map I created. The files are all on the same directory, and I didn't change any of the file names from the tutorial. The tutorial has a step to test if the php file called phpsqlajax_genxml.php is outputting the xml and I successfully tested it and it was.
The problem is that the map isn't rendering the items I have in the database, that should be converted to xml for the map to read.
Any help, or pointing me in the right direction would be much appreciated.
UPDATE 1: Ben burada göstermek için herhangi bir kod yok biliyoruz ben iyi kullanımı olacak emin değilim yani, sadece 3 dosya vardır. Ama benim sorun yardımcı olabilecek bir sorum var.
Öğreticinin xml çıkış bölümünde ben de soruluyor
Call this PHP script from the browser to make sure it's producing valid XML. If you suspect there's a problem with connecting to your database, you may find it easier to debug if you remove the line in the file that sets the header to the text/xml content type, as that usually causes your browser to try to parse XML and may make it difficult to see your debugging messages.
Bu phpsqlajax_dbinfo.php dosya
<?php
$username="root";
$password="root";
$database="root-googleMap";
?>
Bu oluşturmak için xml kodu, aslında sonra yapılan bir xml belge var mı ve ben de açabilirsiniz, ya da geçici dönüşüm. Öylesine i test etmek için yukarıdaki adımı nasıl yapabilirim, ben gerçekten anlamıyorum.
<?php
require("phpsqlajax_dbinfo.php");
// Start XML file, create parent node
$doc = domxml_new_doc("1.0");
$node = $doc->create_element("markers");
$parnode = $doc->append_child($node);
// Opens a connection to a mySQL server
$connection=mysql_connect (localhost, $username, $password);
if (!$connection) {
die('Not connected : ' . mysql_error());
}
// Set the active mySQL database
$db_selected = mysql_select_db($database, $connection);
if (!$db_selected) {
die ('Can\'t use db : ' . mysql_error());
}
// Select all the rows in the markers table
$query = "SELECT * FROM markers WHERE 1";
$result = mysql_query($query);
if (!$result) {
die('Invalid query: ' . mysql_error());
}
header("Content-type: text/xml");
// Iterate through the rows, adding XML nodes for each
while ($row = @mysql_fetch_assoc($result)){
// ADD TO XML DOCUMENT NODE
$node = $doc->create_element("marker");
$newnode = $parnode->append_child($node);
$newnode->set_attribute("name", $row['name']);
$newnode->set_attribute("address", $row['address']);
$newnode->set_attribute("lat", $row['lat']);
$newnode->set_attribute("lng", $row['lng']);
$newnode->set_attribute("type", $row['type']);
}
$xmlfile = $doc->dump_mem();
echo $xmlfile;
?>