Fixed formatting and ordering of columns

This commit is contained in:
WilliamMiceli
2019-12-04 19:13:14 -05:00
parent aa5cf8b099
commit 0de96b0d88
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@
<?php
try{
echo '<pre>';
echo "messageID\tdate\t\tsender\tmessage\n\n";
echo "messageID\tdate\t\tsender\t\tmessage\n\n";
$sql_select = "SELECT messageID, date, sender, message";
$sql_from = "FROM messages";
$sql_where = "WHERE recipient='".$_SESSION["loggedInUser"]."'";