Posts Tagged: ‘php program’

Running PHP and MySQL Programs

July 4, 2011 Posted by Admin

Before attempting to run PHP and MYSQL, make sure the program is active with the green light indication. The first step, create a php file using PHPeditor or notepad, and write a script like below:

<?Php
phpinfo ();
?>

Save the script with the name server info.php into the root folder, then open a browser and type in the address http://localhost/info.php. If the browser display information about PHP, then you successfully install the PHP module (more…)

Incoming search terms:

  • mysql programs
  • how to run a MYSQL Program as a HTML
  • running program of php

Introduction to PHP

July 4, 2011 Posted by Admin

Public data may be accessed by all parties. To make the website a dynamic and easily updated at any time of the browser, it takes a program that can process data from a client computer or from a server computer itself so easily and conveniently presented in the browser. One program that can run on the server and PHP is quite reliable. PHP is a programming language that runs within a web server and serves as a data processor on a server. By using a PHP program, a website will be more interactive and dynamic. Data sent by a website visitor / client computer will be processed and stored on web servers and databases can be displayed again when accessed. To run this PHP code, the file must be uploaded to the server. (more…)