Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<title>Todays Birthdays</title>
</head>
<body>
<h1>The following have a birthday today</h1>
<?php
if (!isset($_GET['day'])) {
die("<h2>day not specified</h2>");
}
if (!isset($_GET['month'])) {
die("<h2>month not specified</h2>");
}
$day = $_GET['day'];
$month = $_GET['month'];
$cnx = mysql_connect('localhost','root','password');
if (!$cnx) {
die('<h2>Unable to connect to database server</h2>');
}
if (!@mysql_select_db('birthsdb') ) {
die('<h2>Unable to connect to birthsdb database</h2>');
}
$select = "SELECT name FROM birthdays WHERE MONTH(born)=$month AND DAYOFMONTH(born)=$day";
$result = @mysql_query($select);
if (!$result) {
die("<h2>Unable to process: $select</h2>");
}
while ( $row = mysql_fetch_array ($result) ) {
echo("\n<p>\n" . $row['name'] . "\n</p>");
}
?>
}