From bda80748a04ef396b6d7336a658b4a2d31196185 Mon Sep 17 00:00:00 2001 From: crispytx Date: Mon, 30 May 2016 08:45:58 -0500 Subject: [PATCH 1/2] Delete searchresults.php --- searchresults.php | 79 ----------------------------------------------- 1 file changed, 79 deletions(-) delete mode 100644 searchresults.php diff --git a/searchresults.php b/searchresults.php deleted file mode 100644 index 7cb9703..0000000 --- a/searchresults.php +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - -query($SQL); - $j = 0; - while ($record = $output->fetch_assoc()){ - $keywordMatch[$i][$j] = $record['domain']; - $j++; - } - } - $MySQL->close(); - - $k = count($keywordMatch); - - echo "

Ask Toby!

"; - echo "
"; - for ($l = 0; $l < $k; $l++) { - $m = count($keywordMatch[$l]); - for ($n = 0; $n < $m; $n++) { - echo "
{$keywordMatch[$l][$n]}

"; - } - } - echo "
"; - - -?> - - From 4e89517ee38f8b40c4575faac1220879b90ce871 Mon Sep 17 00:00:00 2001 From: crispytx Date: Mon, 30 May 2016 08:46:26 -0500 Subject: [PATCH 2/2] Add files via upload --- searchresults.php | 81 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 searchresults.php diff --git a/searchresults.php b/searchresults.php new file mode 100644 index 0000000..8e75ac1 --- /dev/null +++ b/searchresults.php @@ -0,0 +1,81 @@ + + + + + + +query($SQL); + $j = 0; + while ($record = $output->fetch_assoc()){ + $keywordMatch[$i][$j] = $record['domain']; + $j++; + } + } + $MySQL->close(); + + $k = count($keywordMatch); + + echo "

Ask Toby!

"; + echo "
"; + for ($l = 0; $l < $k; $l++) { + $m = count($keywordMatch[$l]); + for ($n = 0; $n < $m; $n++) { + echo "
{$keywordMatch[$l][$n]}

"; + } + } + echo "
"; + +?> + + \ No newline at end of file