The internal web application at my company tends to send out a lot of email notifications. Some of them are reminders about various deadlines. Recently I got a feature request to allow people to add these reminders as events to their Outlook calendar.
Category Archives: Programming
PHP Remove NULL values from Array
Remove NULL values only
array_slice
array_slice — Extract a slice of the array http://uk.php.net/manual/en/function.array-slice.php
increase php upload limit
.htaccess
About rel=”nofollow”
Watch a video on rel=nofollow. “Nofollow” provides a way for webmasters to tell search engines “Don’t follow links on this page” or “Don’t follow this specific link.”
Automatically make a url a clickable link
Sorry just realised that my response was missing a line. $str=ereg_replace(“[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]”,”<a href=\”\\0\” rel=\”nofollow\”>\\0</a>”,$str) This is the one I use to put the no-follow link in.