All countries with population > = $pop ?>:
prepare("SELECT * FROM countries WHERE population > :pop AND surface_area > 1000000;");
$stmt->execute(array(':pop' => $pop));
// Iterate over the records it returned, outputting some information from each in an - .
foreach ($stmt as $record) {
?>
- = $record['name'] ?> (= $record['code'] ?>)