CSS
Flash
JavaScript
Photoshop
PHP



Tutorials > PHP Tutorials


htaccess: Stopping "Page not found" erro
How to use an .htaccess file to automatically redirect requests for files that may have moved following a site redesign. This really useful technique will stop your users getting "page not found" errors after bookmarking pages on your site that no longer exist. Also solves problem of search engines that haven't caught up yet with your new site structure.

More Info - Visit


Using Type Juggling/Type Casting to Modify Data Ty
We're going to be dealing with type juggling in this article. This is the process of instructing PHP how to handle the value after the type juggling. Type juggling can do absolutely all sorts, from converting integers to floats, arrays to objects, and even strings to binary as of PHP 5.2.1. It can also save you calling various functions and thus making your script quicker!

More Info - Visit


Setup a quick Yahoo Search page within a few minut
Nice tutorial on using the Yahoo search web service with the classes from the Zend framework.

More Info - Visit


Using Exceptions to Provide Better Feedback
Within this article, we'll be taking a closer inspection of exceptions, as requested by the lovely Haris. This will be a basic exceptions article and so I won't be going over how to extend onto the exceptions class to model your own - otherwise we'll get too far ahead of ourselves. Exceptions tend to be used where we have no jurisdiction over the source, and when we wish to return a more informative message to the front-end.

More Info - Visit


Advanced PHP: Working with Interfaces
When you create an interface, you're basically creating a prototype/blueprint of functions that classes using the interface must implement in order to be valid. It's usually easier to learn from example, so here's a basic interface that represents a Page.

More Info - Visit


Timezone Class: Dealing with Timezones the Proper
Using the Timezone class to automatically deduce the timezone's GMT offset and then modify the date accordingly. I must admit that I was going to write you a simple timezone script and then tell you how easy it was. However, I came across some handy timezone_* functions and things got a little more difficult but a lot more practical. This script will allow you to display the time in any timezone you wish, without any ifs, buts or maybes along the way.

More Info - Visit


Functions with Endless Amounts of Arguments
Sometimes we need to create functions that require an indefinite and variable amount of arguments. Creating a function to cater for these arguments may seem straight-forward; I've seen several people who have created functions with five or so arguments and if they required a sixth argument at any stage during their project's development, they added the sixth argument to the function and carried on as normal.

More Info - Visit


Installing PHP 5x on Windows vista
Learn how to install php 5.x on windows vista.after seeing so many tutorials and trying them nothing worked.until i worked and found the real way to make php work.

More Info - Visit


Advanced PHP: Using the Factory Pattern
The factory method pattern is an object-oriented design pattern. Like other creational patterns, it deals with the problem of creating objects (products) without specifying the exact class of object that will be created.

More Info - Visit


PHP regular expression tutorial
In this article I will show you how to use PHP regular expressions in your own PHP scripts.

More Info - Visit



Pages: <Prev  1 2 3 4 5 6 7 8 9 10 11  Next>

   
Copyright © 2008 Tutorial-List