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...]
How to Add External Stylesheet on Web Pages
Cascaded style sheets are the means by which web developers model the web page. They can be placed within page or added via external link. There are pros and cons of using internal and external stylesheets. Depending on your needs for web page development, it is upto you to choose a way to add stylesheet on your web page. [Read more...]
HTML Forms and User Input
Forms are the means by which webmasters take input from users and manipulate the web page. Forms can be used in any web development language like php, asp, ruby, python to interact with database or other web pages. Forms usually consist of text field, radio buttons, check box, buttons,label and list control items. [Read more...]
How to Use PHP Variables
Every programming language makes use of variables in order to work with the user data. No matter what type of program you write it involves usage of variables. These variables can be temporary or point to the particular object in the database depending on the program. You’ll be able to reuse the data by using variables in your program. [Read more...]
How to Create Cookies Using PHP
There are many ways with which a web app or website can set cookies inside browser. In this tutorial we’ll take a look at simple way to create and read a cookie. [Read more...]
How to Run PHP File on Computer
Php files can’t be executed on your computer without running webserver services in the background. Webserver is the one that compiles php code and sends it to execute on web browser. You need to install web server in order to run php file on computer. [Read more...]