j'ai testé ton code, il est parfait mais rien de plus au niveau resultat. Je suis revenu à l'ancien, car pour tout dire mon niveau ne me permet pas de tout piger dans ton dernier code.
voici mon code entier :
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 41 42 43 44 45 46
| <html>
<body>
<table border=1 bordercolor="blue">
<tr border=1>
<td border=1 height="5">
<form method="POST">
<input type="texte" name="numero_affich_photo" value="n° de photo à afficher" onFocus="this.value=''">
<input type="submit" value="Afficher la photo">
</form>
</td>
<td rowspan=2 border=1 bordercolor="red" height="550">
<?php
// php echo '<img src="images/bdd1/'.$_POST['numero_affich_photo'].'.jpg" style="border:1px solid black"/>';
//echo '<img src="images/bdd1/'.$_POST['numero_affich_photo'].'.jpg" border="3" height="550">'; ?>
<img src="images/bdd1/<?php echo $_POST['numero_affich_photo']; ?>.jpg" style="border:3px solid #000; height:550px;" alt="photo" />
</td>
</tr>
<tr>
<td border=1 bordercolor="green" height="550">
toto
</form>
</td>
</tr>
</table>
<script language="JavaScript1.1">
<!--
hsh = new Date();
hsd = document;
hsr = hsd.referrer.replace(/[<>]/g, '');
hsi = '<a href="http://www.xiti.com/xiti.asp?s=119801"';
hsi += ' TARGET="_top"><img width="39" height="25" border=0 ';
hsi += 'src="http://logv22.xiti.com/hit.xiti?s=119801';
hsi += '&p=admin';
hsi += '&hl=' + hsh.getHours() + 'x' + hsh.getMinutes() + 'x' + hsh.getSeconds();
if(parseFloat(navigator.appVersion)>=4)
{Xiti_s=screen;hsi += '&r=' + Xiti_s.width + 'x' + Xiti_s.height + 'x' + Xiti_s.pixelDepth + 'x' + Xiti_s.colorDepth;}
hsd.writeln(hsi + '&ref=' + hsr.replace(/&/g, '$') + '" title="Mesurez votre audience"></a><\!--');
//-->
</script>
<noscript>
<a href="http://www.xiti.com/xiti.asp?s=119801" TARGET="_top"><img width="39" height="25" border=0 src="http://logv22.xiti.com/hit.xiti?s=119801&p=&admin" title="Mesurez votre audience"></a>
</noscript><!--//-->
</body>
</html> |
le dernier javascript est juste un rajout de xiti pour mesurer l'audience du site.
clic droit/proprietes:
quand je suis sur ma page apres un F5 :
http://qualitypics.maisonx.com/images/bdd1/.jpg
(normal)
les resultats en tapant 2017 dans le <input type> : pas d'affichage
clic droit/proprietes:
http://qualitypics.maisonx.com/images/bdd1/2017.jpg
ici la variable est prise en compte
et le source :
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 41 42 43
| <html>
<body>
<table border=1 bordercolor="blue">
<tr border=1>
<td border=1 height="5">
<form method="POST">
<input type="texte" name="numero_affich_photo" value="n° de photo à afficher" onFocus="this.value=''">
<input type="submit" value="Afficher la photo">
</form>
</td>
<td rowspan=2 border=1 bordercolor="red" height="550">
<img src="images/bdd1/.jpg" style="border:3px solid #000; height:550px;" alt="photo" />
</td>
</tr>
<tr>
<td border=1 bordercolor="green" height="550">
toto
</form>
</td>
</tr>
</table>
<script language="JavaScript1.1">
<!--
hsh = new Date();
hsd = document;
hsr = hsd.referrer.replace(/[<>]/g, '');
hsi = '<a href="http://www.xiti.com/xiti.asp?s=119801"';
hsi += ' TARGET="_top"><img width="39" height="25" border=0 ';
hsi += 'src="http://logv22.xiti.com/hit.xiti?s=119801';
hsi += '&p=admin';
hsi += '&hl=' + hsh.getHours() + 'x' + hsh.getMinutes() + 'x' + hsh.getSeconds();
if(parseFloat(navigator.appVersion)>=4)
{Xiti_s=screen;hsi += '&r=' + Xiti_s.width + 'x' + Xiti_s.height + 'x' + Xiti_s.pixelDepth + 'x' + Xiti_s.colorDepth;}
hsd.writeln(hsi + '&ref=' + hsr.replace(/&/g, '$') + '" title="Mesurez votre audience"></a><\!--');
//-->
</script>
<noscript>
<a href="http://www.xiti.com/xiti.asp?s=119801" TARGET="_top"><img width="39" height="25" border=0 src="http://logv22.xiti.com/hit.xiti?s=119801&p=&admin" title="Mesurez votre audience"></a>
</noscript><!--//-->
</body>
</html> |
Partager