Pop:
NamePop
prepare("SELECT name, pop FROM nations where Pop > ?");
			if ($stmt->execute(array($_REQUEST['pop']))) {
				while ($row = $stmt->fetch()) {
					print_r($row);
				}
			}
			$dbh = null;
		} catch (Exception $e) {
	    	print "Error!: " . $e->getMessage() . "
"; die(); } } ?>