Minor fixes and closing DB connections as needed

This commit is contained in:
WilliamMiceli
2019-12-04 21:48:04 -05:00
parent 5bb11b100b
commit d5f3df965f
9 changed files with 95 additions and 95 deletions

View File

@@ -4,24 +4,23 @@
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="styling.css">
</head>
<body>
<!--#include virtual="header.html" -->
<!--#include virtual="topNavBar.html" -->
<h2><font color="white">Send a message</h2>
<head>
<link rel="stylesheet" type="text/css" href="styling.css">
</head>
<body>
<!--#include virtual="header.html" -->
<!--#include virtual="topNavBar.html" -->
<h2><font color="white">Send a message</h2>
<form method="post" action="messageSender.php">
Who are you sending it to?: <br><input type="text" name="name">
<br><br>
Message: <br><textarea name="message" rows="5" cols="40"></textarea>
<br><br>
<input type="submit" class="button">
</form>
</body>
<form method="post" action="messageSender.php">
Who are you sending it to?: <br><input type="text" name="name">
<br><br>
Message: <br><textarea name="message" rows="5" cols="40"></textarea>
<br><br>
<input type="submit" class="button">
</form>
</body>
</html>
<?php
$db_connection = null;
?>