Code Snippets Integrated into Google Universal Search

I just saw this as I was looking up a function.  Nice little code example integrated right into the search results.  Pretty fancy.

Code integrated into Google Universal Search

I like that.   Now I need to get my code to show up like that.  ;)

PHP 301 Permanent Redirect

After starting this site, it came time to shut down the predecessor. But, my other site had at least some authority/PR that I wanted to pass along. So I sat down to figure out how 301 redirecting worked. And, it’s some really simple PHP code.

Here is a sample redirect:

<?php
header(”HTTP/1.1 301 Moved Permanently”);
header(”Location: http://www.new-domain.com/new-folder/new-page.html”);
exit();
?>

That’s it!