hi sir! little bit lost here in php. Pls help!
how can I add css file for may xml created from php?
<?php
bla bla bla.....
---------<?xml-stylesheet type="text/css" href="markers.css"?>-------how can i add this line?
echo '<markers>';
while ($row = @mysql_fetch_assoc($result)){
echo '<marker ';
echo 'name ="' . parseToXML($row['name']) . '" ';
echo 'address ="' . parseToXML($row['address']) . '" ';
echo 'lat ="' . $row['lat'] . '" ';
echo 'lng ="' . $row['lng'] . '" ';
echo '/>';
}
echo '</markers>';
?>