@@ -43,37 +43,80 @@
After eating and breathing, expressing opinions on the internet is the
most important humand need. Here are some of mine that occupied my mind
- for more than few seconds.
+ for more than few seconds.
+ ';
+ }
+ }
+
+ // function to print file line by line in reverse order
+ function printFileReversed($filename)
+ {
+ $lines = file($filename);
+ $reversedLines = array_reverse($lines);
+ foreach ($reversedLines as $line)
+ {
+ echo $line . ' ';
+ }
+ }
+
+ // function to print file line by line which has "Edit" in them
+ function printFileEdited($filename)
+ {
+ $file = fopen($filename, "r");
+
+ while (($line = fgets($file)) !== false) {
+ if (strpos($line, 'Edited') !== false)
+ {
+ echo $line . ' ';
+ }
+ }
+ fclose($file);
+ }
+ ?>