Enregistrer les variables de session

Author:

 session
Download

<?php
session_start();
?>
<html>
<head>
<title>Enreistrement des Variables dans une session</title>
</head>
<body>
<div>
<?php
$_SESSION['produit1'] = "Moniteur";
$_SESSION['produit2'] = "RAM";
$_SESSION['produit3'] = "Chipset";
$_SESSION['produit4'] = "VGA";
print "Les produits ont été enregistré";
?>
</div>
</body>
</html>

Leave a Reply

Your email address will not be published. Required fields are marked *


4 × one =