MSV FM

dot.antimicrobial@66.96.161.157: ~ $
Path : /hermes/bosweb01/b2651/admin.tattso.com/
File Upload :
Current < : /hermes/bosweb01/b2651/admin.tattso.com/listing_data.php

<?php
$servername = "phuckdesign.netfirmsmysql.com";
$username = "tattso";
$magicword = "maryland2018";
$dbname = "places";

$conn = mysqli_connect($servername, $username, $magicword, $dbname);

if($conn === false){
    die("ERROR: Could not connect. " . mysqli_connect_error());
}else{
  echo "<a name='Top'>";
  echo "<a href='#Bot'>Jump to bottom</a><br><br>";
}

$sql = "SELECT * FROM GoogleMap";

if($result = mysqli_query($conn, $sql)){
  if(mysqli_num_rows($result)>0){
    while($row = mysqli_fetch_array($result)){
      echo "ID: " . $row['id'] . "<BR>";
      echo "Date: " . $row['dateinfo'] . "<BR>";
      echo "Country: " . $row['country'] . "<BR>";
      echo "City: " . $row['city'] . "<BR>";
      echo "Place: " . $row['place'] . "<BR>";
      echo "Activity Type 1: " . $row['activity_type1'] . "<BR>";
      echo "Activity Type 2: " . $row['activity_type2'] . "<BR>";
      echo "Location Type 1: " . $row['location_type1'] . "<BR>";
      echo "Location Type 2: " . $row['location_type2'] . "<BR>";
      echo "Remark: " . $row['remark'] . "<BR>";
      echo "Embed: " . $row['embed'] . "<BR>";
      echo "Origin: " . $row['origin'] . "<BR><BR>";
    }
    mysqli_free_result($result);
  }else{
    echo "No records matching your query were found.";
  }
}else{
  echo "ERROR: Could not execute $sql." . mysqli_error($conn);
}

// Close connection
mysqli_close($conn);

echo "<a href='#Top'>Jump to top</a>";
echo "<a name='Bot'>";
?>