IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Langage PHP Discussion :

recuperation de variable


Sujet :

Langage PHP

  1. #21
    Membre à l'essai
    Homme Profil pro
    Inscrit en
    Août 2011
    Messages
    59
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Var (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Août 2011
    Messages : 59
    Points : 15
    Points
    15
    Par défaut
    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 :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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 :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    http://qualitypics.maisonx.com/images/bdd1/.jpg
    (normal)

    les resultats en tapant 2017 dans le <input type> : pas d'affichage

    clic droit/proprietes:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    http://qualitypics.maisonx.com/images/bdd1/2017.jpg
    ici la variable est prise en compte

    et le source :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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>

  2. #22
    Invité
    Invité(e)
    Par défaut
    Je ne peux rien pour toi si tu reprends un code ancien (et qui comporte des ERREURS !!) ...

  3. #23
    Membre à l'essai
    Homme Profil pro
    Inscrit en
    Août 2011
    Messages
    59
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Var (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Août 2011
    Messages : 59
    Points : 15
    Points
    15
    Par défaut
    ok, revoici mon code entier :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    47
    48
    49
    50
    51
    52
    53
    <DOCTYPE HTML>
    <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
    <head>
    	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />
    	<title>Test</title>
    </head>
    <body>
     
    <?php
    $num_img_defaut_texte = htmlentities(trim('n° de photo à afficher'));
    $num_img = (isset($_POST['numero_affich_photo']) && htmlentities(trim($_POST['numero_affich_photo']))!=$num_img_defaut_texte)? htmlentities(trim($_POST['numero_affich_photo'])) : ''; ?>
    <table style="border:0; border-collapse:separate;">
    	<tr>
    		<td style="border:1px solid blue; height:25px;">
    			<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
    			<input type="text" name="numero_affich_photo" value="<?php echo ($num_img!='')? $num_img : $num_img_defaut_texte; ?>" onfocus="this.value='';" onblur="if(this.value==''){this.value='<?php echo $num_img_defaut_texte; ?>'};" />
    			<input type="submit" name="btenvoiphoto" value="Afficher la photo" />
    			</form>
    		</td>
    		<td rowspan="2" style="border:1px solid red; height:550px; width:100px;">
    <?php		if($num_img!='' && file_exists('images/bdd1/'.$num_img.'.jpg')) { ?>
    			<img src="images/bdd1/<?php echo $num_img; ?>.jpg" style="border:3px solid #000; height:550px;" alt="photo" />
    <?php		} elseif($num_img!='') { ?>
    			Oh bouffon ! C'est pas une image ton que-tru !
    <?php		} ?>
    		</td>
    	</tr>
    	<tr>
    		<td style="border:1px solid green; height:525px;">
    			toto
    		</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>
    les resultats en tapant 2017 dans le <input type> : pas d'affichage
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    http://.../images/bdd1/2017.jpg
    ici la variable est prise en compte

    et le source :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
     
    <!DOCTYPE HTML>
    <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
    <head>   <script language='javascript'>var site=4840;</script><script language='javascript' src='http://xxx/action/pub.php'></script>
    	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />
    	<title>Test</title>
    </head>
    <body>
     
    <table style="border:0; border-collapse:separate;">
    	<tr>
    		<td style="border:1px solid blue; height:25px;">
    			<form method="post" action="/testadmin2.php">
    			<input type="text" name="numero_affich_photo" value="n&deg; de photo &agrave; afficher" onfocus="this.value='';" onblur="if(this.value==''){this.value='n&deg; de photo &agrave; afficher'};" />
    			<input type="submit" name="btenvoiphoto" value="Afficher la photo" />
    			</form>
    		</td>
    		<td rowspan="2" style="border:1px solid red; height:550px; width:100px;">
    		</td>
    	</tr>
    	<tr>
    		<td style="border:1px solid green; height:525px;">
    			toto
    		</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>

  4. #24
    Invité
    Invité(e)
    Par défaut
    Sympa, tes photos de vacances !

    ps : édite ton message précédent et supprime les liens (ton site / image)

  5. #25
    Membre à l'essai
    Homme Profil pro
    Inscrit en
    Août 2011
    Messages
    59
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Var (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Août 2011
    Messages : 59
    Points : 15
    Points
    15
    Par défaut
    desolé , un oubli, j'essaie depuis le debut, mais celui là m'a echappé...

    j'ai modifié !

Discussions similaires

  1. [MFC]Recuperation de variable situé dans un thread
    Par dreamkiller dans le forum MFC
    Réponses: 26
    Dernier message: 05/04/2005, 16h26
  2. [recuperation de variable entre 2 jsp]
    Par maya5 dans le forum Servlets/JSP
    Réponses: 2
    Dernier message: 02/06/2004, 14h23
  3. [VB.NET]Recuperation de variable dans un URL...
    Par seb_acsg dans le forum ASP.NET
    Réponses: 11
    Dernier message: 28/01/2004, 15h01
  4. comment recuperer une variable dans flash
    Par krépuscul dans le forum Flash
    Réponses: 30
    Dernier message: 16/10/2003, 10h40
  5. Réponses: 4
    Dernier message: 18/07/2002, 14h32

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo