worbit | Published

3 Votes Vote

25 New & Useful PHP Techniques & Tutorials

Posted by worbit 306 days ago php
http://webdeveloperplus.com — PHP is the most popular and widely accepted server side scripting language among developers due to its easy to learn nature, free of cost and its large ever increasing helpful community. Here are 25 useful PHP techniques and tutorials, most of which have been published only in this year. Read More
168 Comments Bury
Tags: php howto snippets list All
2 Votes Vote

Handy PHP Code Snippets

Posted by worbit 308 days ago php
http://minhd.net — A list of 10 php snippets that mighy be extremely useful. Read More
1 Comment Bury
Tags: php snippets list All
2 Votes Vote

Creating user-defined RSS feeds in WordPress

Posted by worbit 311 days ago wordpress
http://www.wprecipes.com — If you need to create a special feed for your wordpress follow this tutorial. You can create special feeds for specific categories, feeds in different formats,... just by creating a php interating through posts and then using it as a template for a new page. Simple as that... Read More
Discuss Bury
Tags: wordpress howto All
2 Votes Vote

MySQL database class using Singleton design pattern

Posted by worbit 374 days ago php
http://webjawns.com — Using the Singleton design pattern is a simple way to limit the number of class instances to one, helps keep database connections organized, and can also save memory. The PHP code below is a basic example on how to use the Singleton pattern to create a database class. This class can be used to manage a database connection throughout PHP script execution. Read More
Discuss Bury
Tags: php mysql snippet singleton class All
2 Votes Vote

6 Tips To Secure Your Website or Blog

Posted by worbit 374 days ago php
http://www.pcland.info — Security is a very important issue in managing a website because a small problem could have very large consequences. And the larger the website, the more important it is to take care of the website security. The main reason for security is to keep private data safe and to prevent unauthorized access whether it is by using SSL to encrypt the page or are using complex passwords they are all for the Read More
2 Comments Bury
Tags: apache howto guide list All
2 Votes Vote

Php Login Script using MySQL Database

Posted by worbit 374 days ago php
http://www.web-tricks.info — If you need to password protect your pages, or content, you must deploy some sort of authentication mechanism so that only allowed users can access the material. Using Php and some database, in my case, MySQL, you can develop a sufficiently secure login system to prevent the material from unauthorized access. Lets have a brief overview of the login system: Read More
Discuss Bury
Tags: php howto script resources All
2 Votes Vote

Solutions to Cross-Site Scripting (XSS) Attack

Posted by worbit 374 days ago php
http://hungred.com — Cross-site scripting attack is a type of computer security vulnerability typically found in web applications which allow code injection by malicious web users into the web pages viewed by other users. Often look perfectly fine on the end-users side who may be subject to unauthorized access, theft of sensitive data, and financial loss. Here are a few cross-site scripting attack scenarios you may f Read More
Discuss Bury
Tags: security howto php list All
3 Votes Vote

Is Your PHP Code Secure?

Posted by worbit 389 days ago php
http://www.devirtuoso.com — Consider all input data tainted like the moldy piece of cheese in the back of your fridge. In PHP, a general rule of thumb is that all data in PHP’s superglobals ($_POST, $_GET..etc) should be considered tainted. Read More
Discuss Bury
Tags: php howto bad practice list All