PHP pages have a reputation of being more difficult (or at least different) to SEO than static HTML pages. Here’s an overview of the major issues encountered when trying to make PHP scripts rank well. While this focuses on PHP much of it is still relevant to dynamic pages in general.
The full URL to a page comes in three parts: The domain name, the path to the file then the filename, and the query string. For example, take the URL http://www.example.com/ex ample/page.php?name=Bob:
1. The domain name: www.example.com; 2. The path to the page: /example/page.php; 3. The query string: name=Bob
So how do you find it all out in your own PHP scripts?
This guide will tell you how access each of these elements by using the $_SERVER superglobal array which is available at all times within your PHP scripts.
Platform(s): Linux, Windows, FreeBSD, Mac OSX, Sun Solaris
A very easy tutorial with code included that shows you how to convert keyboard chars input to icon or image output. For instance how to make :) a smiley face.
Need to generate style sheets dynamically with PHP to keep presentaion logic together or create environment aware style sheets with PHP and JavaScript? This tutorial shows you how!
Platform(s): Linux, Windows, FreeBSD, Mac OSX, Sun Solaris
Make all your webpages search engine friendly by converting them to *.htm files. (Requires mod_rewrite on your server.) Touches upon regular expressions.
Platform(s): Linux, Windows, FreeBSD, Mac OSX, Sun Solaris
This short tutorial will guide you through a hypothetical process of adding a movie rating system to a movie database site. Goes over the PHP code and MySQL queries.