How to remove php bad tag -


how remove <range/> , <heading/> "echo"?
seems 2 tags broken.

<lookat>    <longitude>121.5445472</longitude>    <latitude>25.16207778</latitude>    <altitude>0</altitude>    <range/>    <tilt>0</tilt>    <heading/>    <altitudemode>absolute</altitudemode> </lookat> 

it doesn't seem php me, code tags removed:

<lookat> <longitude>121.5445472</longitude> <latitude>25.16207778</latitude> <altitude>0</altitude> <tilt>0</tilt> <altitudemode>absolute</altitudemode> </lookat> 

but if you're trying embed part of php script, might want try this....

<?php // insert php code here ?> <lookat> <longitude>121.5445472</longitude> <latitude>25.16207778</latitude> <altitude>0</altitude> <tilt>0</tilt> <altitudemode>absolute</altitudemode> </lookat> <?php // insert php code here ?> 

Comments

Popular posts from this blog

Java 8 + Maven Javadoc plugin: Error fetching URL -

android - How to delete or change the searchview icon inside the SearchView actionBar? -

c++ - Msgpack packing bools bug -