-
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 August, 2008
-
Conditional Queries in MySQL
Posted on August 30, 2008 | No CommentsProbably the first thing we learn in SQL (Structured Query Language) is a simple SELECT statement to draw information out of the database. Let's assume we're working with a membership... -
PHP Forms Processing
Posted on August 29, 2008 | No CommentsI could write a long article on PHP forms processing, or I could send you to this very useful article. http://apptools.com/phptools/forms/forms1.php -
Securing your WordPress Blog
Posted on August 23, 2008 | 1 CommentSecuring a blog is essential. Here are some resources presented to point you to further information on how to do this. http://www.hackosis.com/2007/11/04/10-ways-to-secure-your-wordpress-install/ http://www.lostartofblogging.com/fighting-blog-hacks-preventing-and-eliminating-intruders http://dougal.gunters.org/blog/2007/10/30/securing-wordpress http://codex.wordpress.org/Hardening_WordPress -
Changing your WordPress Database Table Prefix
Posted on August 23, 2008 | 1 CommentAn article at BlogSecurity.net points us to a plug-in that will change the table-prefix of the MySQL database tables used by your blog. This step contributes to the security of... -
Capturing the filename from a path in PHP
Posted on August 15, 2008 | No CommentsWhen you want to isolate the base filename from a path string, this is the way to do it: $path = "/home/project/folder/mypage.php"; $file = basename($path); //...