Skip to content

Instantly share code, notes, and snippets.

@niquedegraaff
Created February 11, 2012 13:21
Show Gist options
  • Save niquedegraaff/1799392 to your computer and use it in GitHub Desktop.
Save niquedegraaff/1799392 to your computer and use it in GitHub Desktop.
School - PHP - Week 1
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="utf-8">
<title>Week 1 - Activiteit 1 - Hello World!</title>
</head>
<body>
<?php
/**
* @author Dominique de Graaff
* @since 11-02-2012
*/
print ("<h1>Hello World!</h1>\n");
print ("\t\t
<p>
Stenden is een internationaal geori&eacute;nteerde
hogeschool met vijf vestigingen in Noord Nederland en vijf
in het buitenland. Binnen deze internationale interculturele
omgeving speelt onze persoonlijke benadering een belangrijke
rol. Opleidingen worden aangeboden in voltijd, deeltijd of
in een combinatie van werken en leren.
</p>\n");
?>
</body>
</html>
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="utf-8">
<title>Week 1 - Activiteit 2 - Dominique de Graaff</title>
<style type="text/css">
span { display: inline-block; width: 200px; }
</style>
</head>
<body>
<?php
/**
* @author Dominique de Graaff
* @since 11-02-2012
*/
// Variables
$name = "Dominique de Graaff";
$birth_date = "19-07-1984";
$address = "Molenplaatsweg 23";
$zipcode = "9531 KA";
$city = "Borger";
// Output
echo ("<h1>$name</h1>\n");
echo ("\t\t
<p>
<span>Geboortedatum:</span> $birth_date<br>
<span>Adres:</span> $address<br>
<span>Postcode & Woonplaats:</span> $zipcode &nbsp;$city<br>
</p>\n");
?>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Week 1 - Activiteit 3 - Fouten opsporen</title>
</head>
<body>
<?php
/**
* @author Dominique de Graaff
* @since 11-02-2012
*/
echo "<h1>Califoria Occuptional Guide</h1>\n";
echo ("\t\t<h2>Locksmiths</h2>\n");
echo "\t\t
<p>
A locksmith installs, services,
and repairs various types of locks and &hellip; .
</p>\n";
?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment