Learn How to Setup Codeigniter with Xampp and Uniform Server. Codeigniter is one of the popular PHP framework that is suitable for many new php programmers. Codeigniter is lightweight and is relatively easy to understand php framework compared to cakephp and other frameworks. In this tutorial, we will setup codeigniter and get things running with XAMPP and Uniform server. [Read more...]
PHP Regular Expressions
Regular expressions are the patterns that allow you to processs text based on certain requirement. This in turn produces the sequence or pattern of text that is based on pattern-matching as per developers needs. You can do a lot of things using regular expressions. [Read more...]
PHP Solution to the Project Euler Problem 1
This is one of the easiest problem in the project euler archive. You can perform this problem in any language of your choice. As this site is specifically for web developers so i’m focusing on php for this post. You can change the code to get answer in C, C++ or any other language of your choice. [Read more...]
PHP Loops
PHP like any other programming language makes use of loops to perform particular task repeatedly. You can use loops to perform tasks that are supposed to be executed if certain condition is met upto particular period. [Read more...]
How to Redirect Users using PHP
There are many instances where redirection saves a lot of time. You can create a redirection to forwards users to a page which is translated for their locale. You can use redirection for affiliate link and you can also use redirection to avoid non-local folks to English version of your site. [Read more...]
How to Disable Right Click on Website
Learn How to disable right click menu on any website in this tutorial. There are some people on the web who scrape your content and use it on their own website without taking permission. In such cases they don’t give credit to original author and also they don’t care who is the original source. [Read more...]
PHP Functions Tutorial
A function is used in almost every programming language to reduce excessive code and for effective code re-usability. In some programming languages function is called as method. In almost every programming language they’re used to perform particular task on regular basis. This way it saves time of programmer and code also becomes more readable. [Read more...]
How to Use HTML Forms With PHP
Some HTML forms pass data from one page to another without the use of database. You can use php to enhance your HTML forms by making sure that these forms are processed properly. For example if you want some condition to be fulfilled before processing the form then it is possible to do so with php. [Read more...]
How to Use Include Function in PHP
Sometimes you need to keep the same data across all pages. For example, take case of website that has common navigation menu, footer and sidebar across all pages. When you build a dynamic site it is important that these parts of a website remains common so that users can access website without any confusion. [Read more...]
How to Use Arrays in PHP
In programming, we represent our data in terms of variable. As variable holds single value of a particular data type. This is not enough when you want to represent more than one value of any variable and in such case you have to use array. [Read more...]