Home »
Posts Tagged "commentaire"
By
sa | Published:
21 May 2012
 |
<html>
<head>
<title>Formulaire de commentaire</title>
</head>
<body>
<form action="feedba
|
 |
<?
// Voici un commentaire style java
echo "J'ai commenté ce code."
?>
|
 |
# Ceci est un commentaire
|
 |
<?
// Ceci un commentaire sur une ligne.
/* voici un autre commentaire.
qui peut s''etendre sur p
|
 |
<?php
$var1 = "Oui"; // Commentaire
$var1 = "Yes"; # Commentaire
?>
|
 |
<?php
/* Calcul
- A=12
- B=18
- C=a+b
*/
$a=5;
$b=15;
print pow($a+$b,2);
?>
|
 |
<?
/*
Ceci un commentaire
Qui sera ignoré par
Apache et le moteur
de scripte PHP
*/
?>
|
 |
<?php
echo "Test de commentaire"; // Commentaire une ligne style java, c++
echo "Style She
|