File "front.php"

Full path: /www/ttest/googlemap/get_position/front.php
File size: 1.13 KiB (1160 bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Back

<?php
$positions = isset($_POST["txtGetPositions"]) ? htmlspecialchars($_POST["txtGetPositions"]) : "";
if (strcmp($positions, "") != 0)
  $position = explode("\r\n", $positions);

print "
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv='content-type' content='text/html;charset=UTF-8'>
    <title>位置情報取得 frontページ</title>
  </head>
  <body>
    <center>
      <font size='3'>
        <b>
          GoogleMapを利用しての位置情報取得<br>
          【五洋建設株式会社】
        </b>
      </font>
    </center>
    <hr>";

//var_dump($position);
$val = "";
for($i = 0; $i < count($position); $i++)
{
  if ($i != 0)
    $val .= "\n";
  $val .= $position[$i];
}

print "
    <form action='./map.html' method='post' style='display: inline'>
      <input type='submit' value='GoogleMapで位置情報取得'><br><br>
    </form>
    <font color='red'>取得結果</font><br>
    <textarea name='txtGetPositions' rows='6' wrap='off' readonly>". $val. "</textarea>
";

print "
  <hr>
  <center>
    <font size='3' face='Arial'>
      <b><i>
        penta-ocean
      </i></b>
    </font>
  </center>
  </body>
</html>
";
?>

PHP File Manager