bonjour je vaudrais enregistrer dans un fichier un mot clé. pour cela j'utilise du script et du php mais le php s'exécute pas comme je le veux je n'arrive pas a comprendre pourquoi cela ne fonctionne pas.
voila ce que je voudrais:
quand je clique sur limage 1 cela appelle une fonction qui écrit une ligne dans un fichier selon l'image sur laquelle on a cliquez
mais cela ne fonctionne pas !! le fichier ce crée et écrie le dernier résultat dedans.
voici mon code :
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf8" />
<title></title>
<script>
function charge($recherche) {
if ($recherche=="Tous") {
<?php
$monfichier = fopen('recherche.txt', 'w');
$$ligne1 = 'Tous';
fwrite($monfichier, $ligne1);
fclose($monfichier);
?>
};
if ($recherche=="Rien") {
<?php
$monfichier = fopen('recherche.txt', 'w');
$ligne1 = 'Rien';
fwrite($monfichier, $ligne1);
fclose($monfichier);
?>
};
};
</script>
</head>
<body >
<a onclick="charge('Tous')" target="_top" style="color:#000000; text-decoration:none">
<div style="position:absolute; left:0px; top:0px; width:185px; height:40px"><img src="image_site/fond06.jpg" style="position:absolute; left:0px; top:0px; width:185px; height:40px">
<div style="position:absolute; left:0px; top:10px; width:185px; height:30px;">Tous</div>
</div>
</a>
<a onclick="charge('Rien')" target="_top" style="color:#000000; text-decoration:none">
<div style="position:absolute; left:250px; top:0px; width:185px; height:40px"><img src="image_site/fond06.jpg" style="position:absolute; left:0px; top:0px; width:185px; height:40px">
<div style="position:absolute; left:0px; top:10px; width:185px; height:30px;">Rien</div>
</div>
</a>
</body>
</html>
voila ce que je voudrais:
quand je clique sur limage 1 cela appelle une fonction qui écrit une ligne dans un fichier selon l'image sur laquelle on a cliquez
mais cela ne fonctionne pas !! le fichier ce crée et écrie le dernier résultat dedans.
voici mon code :
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf8" />
<title></title>
<script>
function charge($recherche) {
if ($recherche=="Tous") {
<?php
$monfichier = fopen('recherche.txt', 'w');
$$ligne1 = 'Tous';
fwrite($monfichier, $ligne1);
fclose($monfichier);
?>
};
if ($recherche=="Rien") {
<?php
$monfichier = fopen('recherche.txt', 'w');
$ligne1 = 'Rien';
fwrite($monfichier, $ligne1);
fclose($monfichier);
?>
};
};
</script>
</head>
<body >
<a onclick="charge('Tous')" target="_top" style="color:#000000; text-decoration:none">
<div style="position:absolute; left:0px; top:0px; width:185px; height:40px"><img src="image_site/fond06.jpg" style="position:absolute; left:0px; top:0px; width:185px; height:40px">
<div style="position:absolute; left:0px; top:10px; width:185px; height:30px;">Tous</div>
</div>
</a>
<a onclick="charge('Rien')" target="_top" style="color:#000000; text-decoration:none">
<div style="position:absolute; left:250px; top:0px; width:185px; height:40px"><img src="image_site/fond06.jpg" style="position:absolute; left:0px; top:0px; width:185px; height:40px">
<div style="position:absolute; left:0px; top:10px; width:185px; height:30px;">Rien</div>
</div>
</a>
</body>
</html>