Ok, kinda hard to explain, but basically I want this page (http://niteomatic.bettersafeconsulting.com/phpsqlajax_map4.htm) to run as my "main" page (or maybe in a side module when I figure this out). So here's the code:
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Nite-O-Matic Map</title>
<script src="js/mapper.php?http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAR1iVwleoKSlYC-MdGmJt2RSdgFcEdVaJbx_FdRExvlwCPkVR-hSlZr8ryThKeWOiOSfMH7f1DzuXLg"
type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(39.05287,-94.591462), 15);
}
}
//]]>
</script>
</head>
<body onload="load()" onunload="GUnload()">
<div id="map" style="width: 500px; height: 300px"></div>
</body>
</html>
BUT when I put this in the WYSIWYG editor, it's rendering the following:
http://niteomatic.bettersafeconsulting.com/
So, I guess my question is how to I either get my code in WYSIWYG (escaping?), or how do I manually (if it is ok to do so) edit WHICH files?
Help? I know this is simple, but I'm new to the PHPWebSite suite and way of doing things.
Thanks all!
Jason