Archive for the ‘PHP’ Category

Script to access MySQL database using PHP

Sunday, June 22nd, 2008

PHP and MySQL are most popular combination in creating web application. PHP and MySQL gets integrated easily in any platforms. Scripts developed in PHP using Window platform works perfectly in when used in Linux environment. Below example shows how to connect between PHP and MySQL database. <?php // Connecting to database $link = ...

What is PHP?

Sunday, June 22nd, 2008

PHP is a server side scripting language, widely used in web programming to build web applications. PHP can be used to develop dynamic content pages. Using PHP we can send request and get response or interact with database servers and manage the page content accordingly. How PHP works To run the PHP ...

Different methods for passing values from one page to another page

Saturday, June 21st, 2008

We often have to pass values of variables between pages in our web site. These are required in many different types. Some time we gather few values from database and want to retain the value throughout the site for some user as the user moves between pages. There are different ...