Language PHP : Hypertext Preprocessor

 Charge moyenne sur 1mn : 1.36 Charge moyenne sur 5mn : 0.64 Charge moyenne sur 15mn : 0.48


PHP

PHP is a popular general-purpose scripting language that is particularly suited for web development.

Fast, flexible and pragmatic, PHP is made for any blog or for all the most popular sites in the world.

The word PHP or programming language contained in web pages and executed on servers, they return the result directly to the client who can never see the source. Allows you to create dynamic web pages.

PHP.Net © 2001-2020 The PHP Group: Language Reference

Predefined PHP classes to make our life easier :)






Site user blocks : Account info / user rights / summary

premier pas en php

Comment faire pour écrire du développement en PHP.

Informations :

Dates
  • Publish : : Sunday 11 july 2004
  • Modification : Saturdy 19 march 2016

  • 775 views

Share :

Les variables PHP commencent par un dollar $var suivis de caractères, on peut les afficher, les modifier, les vider.

Comment afficher quelque chose en PHP

On peut utiliser soit la commande echo soit la commande print.

Script avec 8 lignes

001[php]
002$nom_de_famille = "DUPONT"; // On déclare une variable
003$prenom = 'ORJ'; // On déclare une variable
004
005echo $nom_de_famille; # on affiche la variable $nom_de_famille
006echo ' '; # on affiche du texte (un espace)
007echo $prenom . " habite en France."; # on affiche la variable $prenom et du texte
008[/php]

Comment modifier quelque chose en PHP

Et bien, il faut utiliser des conditions (if, else) selon un évennement ; par exemple on pourait demander "si if c'est heure N, on fait des choses, sinon else on fait d'autres choses ou bien rien".

Script avec 10 lignes

001[php]
002$nom_de_famille = "DUPONT"; // 
003$prenom = 'ORJ'; // 
004$heure='7';
005
006if($heure  == '7')
007echo $nom_de_famille.' '.$prenom.' habite en France. Et est au café ;) citoyen.';
008else
009echo $nom_de_famille.' '.$prenom.' habite en France.';
010[/php]

Comment vider quelque chose en PHP

Il faut utiliser une function PHP unset() .

Script avec 12 lignes

001[php]
002$nom_de_famille = "DUPONT"; // 
003$prenom = 'ORJ'; // 
004$heure='7';
005
006if($heure  == '7')
007	echo $nom_de_famille.' '.$prenom.' habite en France. Et est au café ;) citoyen.';
008else {
009	unset($nom_de_famille);
010	echo $nom_de_famille.' '.$prenom.' habite en France.';
011}
012[/php]

Source :






Author of the page

O.Romain.Jaillet-ramey

O.Romain.Jaillet-ramey

  • Firstname : Olivier Romain Luc
  • Lastname : : Jaillet-ramey
  • Arrived on tuesday 19 october 1976 (1976/10/19 00:00)
    47 years activity !

Translate this page with Google

Firefox Nighlty

Our friends from Framasoft are interested in Mozilla and asked them questions about Nightly: Firefox Night-club, free entry !






Load page: 2,7114591598511