PHP Windows Microsoft ASP Internet Open Source PHP
PHP De WAMP oplossing W=Windows A=Apache M=MySQL P=PHP
PHP P=PHP H=Hypertext P=Preprocessor
Installatie Apache installeren Localhost roept eigen computer aan MySQL Localhost/PHPmyadmin hiermee kun je de database benaderen. Op de cdrom staat een installatieprogramma
Installatie 2 De map apache staat in de root c:\ In de map apache staat een map htdocs Hier komt de website in te staan In de Map Mysql\data komt de database te staan.
Hoe werkt PHP Surfer Webserver De webserver geeft HTML code terug.
Verzoek in HTML + PHP SurferServer
Antwoord in HTML SurferServer
Verzoek in SQL SELECT * FROM Plaatsen MYSQLM
Voorbeeld Surfer typt in Webserver handelt verzoek af en Geeft zuivere HTML taal terug.
Syntax PHP In het HTML bestand: ……………… <?php ?> ……………….
Syntax PHP (2) Variabelen : $Persoon Iets afdrukken: Echo “Hallo wereld”; Echo “ ”; Echo “ Hallo Wereld Commentaar //Dit is commentaar.
Eenvoudig voorbeeld van een script : Candy preference form What's your most favorite kind of candy? Peanut butter cups Snickers Turtles
< HTML> Candy preference reply Yum,<?phpprint("$Candy! ");if($Candy == "peanut butter cups") print("There are several excellent brands of ice cream which contain small or broken-up $Candy."); else{ print("I don't think there's an ice-cream with $Candy in it yet, "); if($Candy == "Snickers") print("but have you tried the $Candy ice cream bar?"); elseif($Candy == "Turtles") print("but the world definitely needs an ice cream with $Candy in it."); }?>