1 / 7

PODSTAWY JĘZYKA PHP

PODSTAWY JĘZYKA PHP. WSTĘP. 1. czym jest 2. składnia 3. wersje 4. bazy danych 5. inne zastosowania. PODSTAWY JĘZYKA PHP. UŻYWANIE SKRYPTÓW. 1. <? echo ("wy ś wietl mnie"); ?> 2. <?php echo(" wy ś wietl mnie "); ?&> 3. <% echo (" wy ś wietl mnie "); %>

lawson
Download Presentation

PODSTAWY JĘZYKA PHP

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. PODSTAWY JĘZYKA PHP WSTĘP 1. czym jest 2. składnia 3. wersje 4. bazy danych 5. inne zastosowania

  2. PODSTAWY JĘZYKA PHP UŻYWANIE SKRYPTÓW 1.<? echo ("wyświetl mnie"); ?> 2.<?php echo(" wyświetl mnie "); ?&> 3.<% echo (" wyświetl mnie "); %> <%= ; # To jest skrót dla "<%echo .." %> 4. <script language="php"> echo (" wyświetl mnie "); </script> 4a. <script language="php" src=”plik_z_kodem.php”> </script>

  3. PODSTAWY JĘZYKA PHP CECHY JĘZYKA PHP 1. typy zmiennych 2. zakończenie instrukcji 3. komentarze ( // lub /* aaaaa */ ) 4. pętleif, for, while, do.. while

  4. PODSTAWY JĘZYKA PHP CECHY JĘZYKA PHP 5. operatory         arytmetyczne ( +, -, *, /, %)         przypisania ( +=, -= itd)         porównania ( ==, ===,!=, !==, <, >, <=, >=)         wywołania echo     inkrementacji i dekrementacji ( $a++, ++$a, $a--, --$a)      logiczne (&& - and, || - or, ! – not)

  5. PODSTAWY JĘZYKA PHP WIĘCEJ http://www.php.net http:// www.google.pl

  6. PODSTAWY JĘZYKA PHP PIERWSZE SKRYPTY <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>używamy PHP</title> </head> <body><br> <center>Skrypt:</center> <scrip language="php" src="skrypt.php"></script> </body> </html>

  7. PODSTAWY JĘZYKA PHP PIERWSZE SKRYPTY PLIK: skrypt.php <?php echo "klasyczne hello world!\n<br>\n"; $zmienna = 2; //przypisanie wartości 1 $druga_zmienna = "Tekst\n<br>\n"; //przypisanie stringa $trzecia_zmienna = $zmienna; //przypisanie $trzecia_ zmiennawartości $ zmienna czyli 1 echo "To jest $druga_zmienna"; //wyświetli tekst w "" echo $druga_zmienna; //wyświetli Tekst echo $nazwa; //wyświetli 1; ?>

More Related