-
Recent Posts
Blogroll
Categories
- Application Tips (2)
- CSS (6)
- Database (10)
- DHTML (2)
- DOS & DOS Scripting (2)
- Graphics (3)
- iPhone (1)
- JavaScript (3)
- Joomla! (11)
- Linux (2)
- MySQL (25)
- Networking (2)
- Operating Systems (5)
- PHP (24)
- Resources (2)
- Snippet (1)
- Uncategorized (38)
- Vista (2)
- Web Development (18)
- WordPress (12)
Tutorius Archives
- January 2012 (1)
- December 2011 (1)
- November 2011 (2)
- October 2011 (4)
- September 2011 (2)
- March 2011 (3)
- December 2010 (1)
- November 2010 (2)
- September 2010 (2)
- August 2010 (5)
- June 2010 (5)
- May 2010 (8)
- April 2010 (6)
- March 2010 (5)
- January 2010 (3)
- December 2009 (2)
- November 2009 (11)
- October 2009 (12)
- September 2009 (3)
- August 2009 (8)
- July 2009 (9)
- June 2009 (4)
- May 2009 (1)
- April 2009 (1)
- February 2009 (3)
- January 2009 (3)
- December 2008 (1)
- November 2008 (3)
- October 2008 (3)
- September 2008 (5)
- August 2008 (7)
- June 2008 (3)
- March 2008 (3)
- February 2008 (1)
- January 2008 (1)
- November 2007 (3)
Archive for July, 2009
-
SEF URLs cause access problems in Joomla!
Posted on July 31, 2009 | No CommentsFrank Summers reports a solution for a problem which causes pages to become inaccessible on a Joomla! site when Search Engine Friendly URLs are turned on. It seems to have... -
Changing the font of code blocks with geshi syntax highlighter
Posted on July 31, 2009 | 1 CommentBy default, geshi-derived syntax highlighters use a serif font to display code blocks. Many people find serif fonts less clear than the visually simpler sans-serif fonts. A good choice is... -
Adding a UNIQUE constraint to a database column
Posted on July 31, 2009 | No CommentsSometimes we may need to make a column unique in a database table. For instance we can't have two employees with the same employees with the same employee number or... -
Pulling database values in multiple formats
Posted on July 31, 2009 | No CommentsWhen we pull a value from MySQL or another database, there's nothing stopping us from pulling the same value in different ways within the same query. For instance, say we want to... -
Going directly to a specific page in a PDF file
Posted on July 29, 2009 | No CommentsWhen accessing a PDF file through a web browser, it's possible to go to a specific page by adding a parameter to the URL. www.mysite.ca/docs/mydoc.pdf#page=100 This is great for bookmarking...