diff --git a/README.md b/README.md
index ea9bf06..871a28c 100644
--- a/README.md
+++ b/README.md
@@ -4,14 +4,15 @@
# Main features:
DONE:
-py : option 6) Trust/Untrust/Blacklist a webring participant
+-php : make a search engine prompt that only accepts [a-zA-Z.://], it must refuse every other character
DOING:
+-php : if valid make it filter your own verified.csv and unverified.csv files
-py : option 7) Add/Remove words in the sensitive list (assigned to anon)
-py : option 8) Add/Remove words in the blacklist (assigned to anon)
TODO:
--php : make a search engine prompt that only accepts [a-zA-Z.://], it must refuse every other character
--php : if valid make it search your own verified.csv and unverified.csv files
+-py : fix uptimecheck.py to match the new csv format
# secondary features:
-php : interactive search engine ? it displays as you type it ?
diff --git a/www/header.php b/www/header.php
index b6044c6..f09ee5f 100644
--- a/www/header.php
+++ b/www/header.php
@@ -7,6 +7,51 @@
"; // beging html table row
+ // if the row is the first one (name url status score) only display (Name Status Score):
+ // display the contents of a csv row
+ if ( $c == "1" ){
+ echo "
";
+ $instance= $_SERVER['SERVER_NAME'];
+ echo nl2br("\n");
+ $verifiedcsvpath="participants/" . $instance . '/verified.csv';
+ $unverifiedcsvpath="participants/" . $instance . '/unverified.csv';
+ //echo $verifiedcsvpath;
+ //echo nl2br("\n");
+ //echo $unverifiedcsvpath;
+ echo nl2br("\n");
+ DisplayCSVNEW($unverifiedcsvpath);
+ // display the results of verified.csv
+ // only display the results of verified.csv that matches with the search term
+ // display the results of unverified.csv
+ // only display the results of unverified.csv that matches with the search term
+
+ }
+ else{ // if query length is less than minimum or more than maximum
+ echo "Error: Query must be between ".$min_length . " and ".$max_length . " characters.";
+ }
+?>
diff --git a/www/tests/search.php b/www/tests/search.php
deleted file mode 100644
index 860d483..0000000
--- a/www/tests/search.php
+++ /dev/null
@@ -1,15 +0,0 @@
-// https://github.com/H3l3na/php-search/blob/master/search.php
-//
-
-