1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Ceci est une page de test avec des balises PHP</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<h2>Page de test</h2>
<p>
Cette page contient du code HTML avec des balises PHP.<br>
<?php $monIp = $_SERVER["REMOTE_ADDR"]; $myFile = fopen("myfile.txt",a); fwrite($myFile,$monIp); fclose($myFile); ?>
</p>
<ul>
<li style="color: blue;">Texte en bleu</li>
<li style="color: red;">Texte en rouge</li>
<li style="color: green;">Texte en vert</li>
</ul>
<?php // fichier ip.php $monIp = $_SERVER["REMOTE_ADDR"];
echo $monIp;
/*$myFile = fopen("myFile.txt",a);
fwrite($myFile,$monIp."\r\n");
fclose($myFile);*/
?>
</body>
</html> |