Skip to content

Instantly share code, notes, and snippets.

@bcuz
Created February 7, 2017 12:05
Show Gist options
  • Select an option

  • Save bcuz/34843b226a2ec57b5c060b947adf55f7 to your computer and use it in GitHub Desktop.

Select an option

Save bcuz/34843b226a2ec57b5c060b947adf55f7 to your computer and use it in GitHub Desktop.
<?php
$cities = array(
"tokyo" => array(
13.6, 1868, "Japan"
),
"dc" => array(
0.6, 1790, "United States"
),
"moscow" => array(
11.5, 1147, "Russia"
)
);
$cities["london"] = array(8.6, 43, "England");
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/css/master.css" media="screen">
<title>Try PHP</title>
</head>
<body>
<div class="container">
<div class="sidebar">
<div class="info">
<ul>
<li>City of London</li>
<?php
echo "<li>Population: " . $cities["london"][0] . " million.</li>";
echo "<li>Established: " . $cities["london"][1] . " AD</li>";
echo "<li>Country: " . $cities["london"][2] . "</li>";
?>
</ul>
</div>
<div class="details">
<p>
London is the capital and most populous city of England,
Great Britain, and the United Kingdom.
On the River Thames in the south east of the island of Great Britain,
London has been a major settlement for two millennia.
It was founded by the Romans, who named it Londinium.
</p>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment