Php Installation

May 11th, 2012 No comments

What do you Need?

If your server supports PHP you don’t need to do anything.

Just create some .php files in your web directory, and the server will parse them for you. Because it is free, most web hosts offer PHP support.

However, if your server does not support PHP, you must install PHP.

Here is a link to a good tutorial from PHP.net on how to install PHP5:http://www.php.net/manual/en/install.php

Download PHP

Download PHP for free here: http://www.php.net/downloads.php

Download MySQL Database

Download MySQL for free here: http://www.mysql.com/downloads/

Download Apache Server

Download Apache for free here: http://httpd.apache.org/download.cgi

Installing all separate software seems more  tedious  Job for beginners. But nothing to worry we have many many package software which contain all require software  as ( PHP,MYSQL,Apache)

Few Important Links are here to help you out ::

WAMP SERVER  Download link:  http://www.wampserver.com/en/
XAMPP Download link:  http://www.apachefriends.org/en/xampp-windows.html

VertrigoServ Download link:  http://vertrigo.sourceforge.net/

You can find more detail::

php development tools



			
Categories: Uncategorized Tags:

Countdown with second and milisec..

February 2nd, 2012 No comments

Just Copy and Pest …. and Go

 

<form name="counter"><input type="text" size="8"
name="d2"></form> 

<script>
<!--
//
 var milisec=0
 var seconds=3
 document.counter.d2.value='30' 

function display(){
 if (milisec<=0){
    milisec=9
    seconds-=1
 }
 if (seconds<=-1){
    milisec=0
    seconds+=1
 }

 else
    milisec-=1
    var t=document.counter.d2.value=seconds+"."+milisec
    setTimeout("display()",100)
	if(t==0.0)
	{
		location.reload();
	}
} 

display()
-->
</script>
Categories: Uncategorized Tags:

php development tools

January 14th, 2012 No comments

1.  WAMPs are packages of independently-created programs installed on computers that use a Microsoft Windows operating system.

WAMP is an acronym formed from the initials of the operating system Microsoft Windows and the principal components of the package:Apache, MySQL and one of PHP, Perl or Python. Apache is a web server. MySQL is an open-source database.

Download link:  http://www.wampserver.com/en/ Read more...

PHP Tutorial : Hypertext Preprocessor brief about PHP

January 10th, 2012 No comments

PHP :  Hypertext Preprocessor is a general-purpose server-side scripting language originally designed for web development to produce dynamic web pages.PHP was originally created by Rasmus Lerdorf  in 1995.
It is among one of the first developed server-side scripting languages that is embedded into a HTML source document, rather than calling an external file
to process data. PHP is installed on more than 20 million websites and 1 million web servers.

History of PHP

PHP development began in 1994 when the Danish/Greenlandic/Canadian programmer
Rasmus Lerdorf initially created a set of Perl scripts he called
“Personal Home Page Tools” to maintain his personal homepage.

The scripts performed tasks such as displaying his resume and recording his
web-page traffic.Lerdorf initially announced the release of PHP on the comp.
infosystems.www.authoring.cgi Usenet discussion group on June 8, 1995.
Zeev Suraski and Andi Gutmans, two Israeli developers at the Technion IIT,
rewrote the parser in 1997 and formed the base of PHP 3, changing the language’s
name to the recursive initialism PHP: Hypertext Preprocessor.
Afterwards, public testing of PHP 3 began, and the official launch came in June 1998. Read more…