Archive for March, 2010

Pretty Sites v Spider Friendly Sites

It is nice to have a pretty looking webpage but is it Search Engine Friendly The problem is that from a design point of view aesthetically it is hard to keep a balance of design and SEO friendly pages. You have to decide if you want your site to be easily indexed and search engine [...]

PHP Password Generating

This script allows random passwords to be generated of any required length with any combination of characters. Randomly generated password: m1ztpxw8 The code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php function genPwd($length=6) { $password = ”; $possible = ’23456789bcdfghjkmnpqrstvwxyz’; $i = 0; while ($i < $length) { [...]