Tag Archives: PHP

PHP Permanently Move A Page

The proper way to move a page and have search engines properly find it is to use a 301 redirect. The 301 redirect tells the search engines that “this page has permanently moved”. I am in the process of redirecting an entire website using 301 redirects, and I will post updates on the impact this [...]

Easy PHP and Html Bar Graph

I want to show you a quick and simple way to create a bar graph using HTML. You need a graphic file that’s just 1 pixel wide and 5 px tall. Make it whatever color you want your bars to be. I named mine CountBar.gif. In my example, I have an array of data for [...]

PHP Quick Reference Study Guide

Comments In PHP #this is a comment, to EOL //this is also a comment, to EOL /* This is also a comment For multi lines */ Variables   Must start with (A-Za-z) or _(underscore) like: $blah $_blah $H4x0rs Illegial Variables $7337 $*UCK Variables in PHP are loosely typed, and do not need to be declared [...]