commit - /dev/null
commit + 14362115ec6cd7ca5cde1a92c2e48b375dd7a6df
blob - /dev/null
blob + 943b86bc80e8f96e638555a10fccd182bff93a8e (mode 644)
--- /dev/null
+++ README.md
+# Sadness
+
+A simple .php file to print random phrases from a sadness person.
+Maybe in a future, can print phrases from a db like sqlite3, for now, I am to sad for that.
+
+# What you need?
+
+A web server, php and sadness.
blob - /dev/null
blob + 13c3126668c03b955894a6ef49965fac41793e8f (mode 644)
--- /dev/null
+++ sadness.php
+<?php
+
+$sadness = array(
+ "A teardrop on earth summons the King of heaven.",
+ "Nothing is more sad than the death of an illusion.",
+ "Tears come from the heart and not from the brain.",
+ "Tears are the summer showers to the soul.",
+ "Sadness is also a kind of defence."
+ );
+
+echo $sadness[array_rand($sadness)];
+
+?>