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...]

How to Make a PHP File

PHP File is basically a text file that contains php commands.You can make your own php file using normal text editor and execute on your browser if you’ve apache or php web server installed. It has an extension of .php and it can be created using normal text editor or any modern web development IDE. [Read more...]