diff --git a/gifs/tips-quickref.gif b/gifs/tips-quickref.gif
new file mode 100644
index 000000000..e5318bb3b
Binary files /dev/null and b/gifs/tips-quickref.gif differ
diff --git a/php-style.css b/php-style.css
index 9986ec141..4b115dd71 100644
--- a/php-style.css
+++ b/php-style.css
@@ -42,4 +42,12 @@ TD,TH {
PRE {
font-size : 10pt;
-}
\ No newline at end of file
+}
+
+LI {
+ margin-bottom: 4pt;
+}
+
+UL,OL {
+ margin-top: 4pt;
+}
diff --git a/tips.php b/tips.php
new file mode 100644
index 000000000..f0aaa2349
--- /dev/null
+++ b/tips.php
@@ -0,0 +1,70 @@
+
+require("shared.inc");
+commonHeader("Cool PHP Tips");
+
+function tipTitle($title,$author='',$date='') {
+ echo "" . $title . "
\n";
+ if ($author || $date) {
+ echo "\n";
+ if ($author) {
+ echo "Submitted by " . $author . "
\n";
+ }
+ if ($date) {
+ echo $date . "
\n";
+ }
+ echo "\n";
+ }
+ echo "
\n";
+}
+
+?>
+
+
+This page is going to contain a collection of "neat" tips and tricks +related to PHP. They aren't necessarily be related to actually coding in PHP +(as our first example shows), but they are, in our opinion, pretty cool. +
+ ++Send your suggestions for tips to webmaster@php.net. +
+ +