css
9 CSS Ethics Every Designer Should Have
August 12, 2010 · Leave a Comment
No need to get any more complicated structure than you need to. Writing a CSS Stylesheet That is Easy to Maintain is really easy, just by following these 9 rules. How deeply you organize your CSS can greatly hinder any necessary tweaks that arise in the future. So, I proposed the question to my team to take a close look at some of the most interesting CSS coding structure and listed them below where you can probably use in every project you are developing. 1) Indent descendant and related rules: This allows you to easily recognize page structure within your CSS and how sections related to each... [Read the full story]
MySQL
Connect to a database
August 10, 2010 · Leave a Comment
Before you can access data in a database, you must create a connection to the database. In PHP, this is done with the mysql_connect() function. Syntax: mysql_connect(servername,username,password); Parameter Description servername Optional. Specifies the server to connect to. Default value is “localhost:3306″ username Optional. Specifies the username to log in with. Default value is the name of the user that owns the server process password Optional. Specifies the password to log in with. Default is “” Example: In the following example we store the connection... [Read the full story]
AJAX
13 Awesome Javascript CSS Menus
August 11, 2010 · Leave a Comment
Every web designer tries to be creative when it comes to designing the main navigation of the website. Now we present you with 13 awesome Javascript CSS menus that will be very handy and easy to modify to suit your needs. Lets take a look at recent examples of these … 1) Sexy Sliding Menu – Andrew Sellick decided to use mootools due to the smoothness of their effects, however, he developed a sliding menu using script.aculo.us . Demo: Mootols Version Demo: Script.aculo.usVersion 2) FastFind Menu Script – This script allows for nested menus, based on dynamic “AJAX” responses. The menu can... [Read the full story]
Photoshop
1000+ Free High Resolution Photoshop Brush Sets
August 12, 2010 · Leave a Comment
Hundreds of thousands of incredible Adobe Photoshop brush sets are all over the web. Due to this phenomenally vast amount of Photoshop brushes available, you can now add patches of dirt, rust, floral effect, swirls, mold, oil stains in your artworks and photos to give them an aged, damaged, dreamy or any look you want. Without further ado, we present 1000+ high-Resolution Adobe Photoshop brush sets that will be perfect for any project you may happen to be working on. Important: Licenses of every brush set varies, so be sure to check that information before using them. 1. Grunge Photoshop Brushes 1.1... [Read the full story]
Wordpress
WordPress Security Tips and Hacks
August 13, 2010 · Leave a Comment
We all agree that having a secure wordpress weblog should be our first priorities when keeping a successful blog. In this post we’d like you to share your knowledge and help us create the WordPress Security guide to keep the bad guys out. Below are 10 security tips that you can easily implement on your WordPress blog. Please share one or more life-savers you use permanently to help protect yourself from WordPress security issues. 1) Nobody should be allowed to search your entire server. * WPdesigner advices us to NOT use this search code in the search.php <?php echo $_SERVER ['PHP_SELF'];... [Read the full story]
php
Exception Handling
August 10, 2010 · Leave a Comment
Exception handling is used to change the normal flow of the code execution if a specified error (exceptional) condition occurs. This condition is called an exception. This is what normally happens when an exception is triggered: The current code state is saved The code execution will switch to a predefined (custom) exception handler function Depending on the situation, the handler may then resume the execution from the saved code state, terminate the script execution or continue the script from a different location in the code We will show different error handling methods: Basic use... [Read the full story]
php
Exception Handling
Exception handling is used to change the normal flow of the code execution if a specified error (exceptional) condition occurs. This condition is called an exception. This is what normally happens when an exception is triggered: The current code state is saved The code execution will switch to a predefined (custom) exception handler function Depending... [Read more of this review]
Error handling
The default error handling in PHP is very simple. An error message with filename, line number and a message describing the error is sent to the browser. Error handling: When creating scripts and web applications, error handling is an important part. If your code lacks error checking code, your program may look very unprofessional and you may be open... [Read more of this review]
Sending Emails
PHP allows you to send e-mails directly from a script. The PHP mail() function: The PHP mail() function is used to send emails from inside a script. Syntax: mail(to,subject,message,headers,parameters) Attributes: to – Required. Specifies the receiver / receivers of the email subject – Required. Specifies the subject of the email. message... [Read more of this review]
More Posts From php
AJAX
13 Awesome Javascript CSS Menus
Every web designer tries to be creative when it comes to designing the main navigation...
21+ Fresh Ajax CSS Tables
Not many web designers have fun when it comes to styling tabular data. We have taken...
47+ Excellent Ajax CSS Forms
Forms needs a solid visual structure, a profound hierarchy of form elements (Fields...
Read More Posts From AJAX
jQuery Plugins
InnerFade
InnerFade is a small plugin for the jQuery-JavaScript-Library. It's designed...
Autocomplete
Autocomplete an input field to enable users quickly finding and selecting some value,...
Jeditable
jQuery edit in place plugin. Plugin Information Homepage: jQuery edit in place plugin Filed...
Read More Posts From jQuery Plugins