- Regjistruar më
- Dhjetor 13, 2004
- Mesazhe
- 43,246
- Pëlqime
- 40,163
Fillimi gjithmone eshte i veshtire por nese keni vullnet mundeni me e mesuar shum shpejt!
Se cfare eshte PHP e gjeni ketu: https://forum.netedy.com/threads/cfare-eshte-php.23/
Programimi ne PHP fillon fillimisht nga File.
Filet PHP serviren nga CMD (Command Line) ose nga nje WebServer.
Filet PHP gjithmone mbarojne me: test.php test.php3 test.php4 test.php5 por e pergjithshmja eshte .php
File .php brenda duhet te startoje me kete: <?php
Dhe duhet te perfundoje me: ?>
Shembull i nje File qe te lexojme Hello World!
E ngarkoni ne webserver(host) dhe vizitoni linkun per ta pare ne funksion.
Se cfare eshte PHP e gjeni ketu: https://forum.netedy.com/threads/cfare-eshte-php.23/
Programimi ne PHP fillon fillimisht nga File.
Filet PHP serviren nga CMD (Command Line) ose nga nje WebServer.
Filet PHP gjithmone mbarojne me: test.php test.php3 test.php4 test.php5 por e pergjithshmja eshte .php
File .php brenda duhet te startoje me kete: <?php
Dhe duhet te perfundoje me: ?>
Shembull i nje File qe te lexojme Hello World!
PHP:
<?php //Fillimi
print_r("Hello World!");
//Mbarimi
?>