Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
2927 connectés 

  FORUM HardWare.fr
  Programmation
  PHP

  Insérer une image soit une video?

 


 Mot :   Pseudo :  
 
Bas de page
Auteur Sujet :

Insérer une image soit une video?

n°2036277
lebrat
Posté le 16-11-2010 à 13:57:17  profilanswer
 

Edité par Elmoricq : correction du jocebug en attendant. Joce, si tu zieutes ce topic : quand y a 2 balises codes de début et une seule à la fin (ou un truc du genre), ça foire, cf. les posts qui reproduisent le problème ci-dessous.
 
Bonjour,
 
je n'arrive pas à intégrer le code IF tel que : si la vidéo est présente, on l'affiche, sinon on affiche une image à la place.
Tout en gardant le script fancybox dejà en place et en utilisant le chemin des images que l'on affiche avec le fancybox  
J'ai essayé mais ça ne marche pas , je n'ai pas le bon raisonnement.
C'est pour une etude proposée par un prof
Merci
 

Code :
  1. <?
  2. include("header.inc.php" );
  3. $id_resto=$_GET["id"];
  4. $query_exists = mysql_query("SELECT COUNT(id) FROM resto WHERE id='$id_resto'" );
  5. $result_exists = mysql_fetch_row($query_exists);
  6. if ($result_exists[0]==0)
  7. {
  8.     header("HTTP/1.1 301 Moved Permanently" );
  9.     header("Location: index.php" );
  10.     die("Redirection" );
  11. }
  12. else
  13. {
  14.         // champs à sélectionner / à afficher
  15.     $tab_champs = array("id","title","city","note","description","address","phone","website","cap","menu_entree","menu_plat","menu_dessert","youtube_link","resa","horferm","pain","prix","serviette","latable","sympaekip","aime","aimemoins","ofinal" );
  16.     $chr_champs='';
  17.     foreach($tab_champs as $val) $chr_champs.=$val.', ';
  18.     $chr_champs=substr($chr_champs,0,-2);
  19.     $q = mysql_query("SELECT $chr_champs FROM resto WHERE id='$id_resto'" );
  20.     $r = mysql_fetch_assoc($q);
  21.     $quser = mysql_query("SELECT id_user FROM users_restos WHERE id_resto='$r[id]'" ) or die(mysql_error());
  22.     $ruser = mysql_fetch_assoc($quser);
  23. }
  24.  
  25. // mise a jour des affichages du resto
  26. mysql_query("UPDATE resto SET hits=hits+1 WHERE id='$id_resto'" );
  27.  
  28. if ($_SESSION["config_user"]["id_user"]>0 && $_SESSION["config_user"]["id_user"]!=$ruser["id_user"] && $_SESSION["fiche_"."$id_resto"]!="visited" )
  29. {
  30.     $qf = mysql_query("SELECT fiche FROM fidelite_config" );
  31.     $rf = mysql_fetch_assoc($qf);
  32.     mysql_query("UPDATE users_fidelite SET fiche=fiche+'".$rf["fiche"]."' WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  33.     mysql_query("UPDATE users SET points=points+".$rf["fiche"]." WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  34.     mysql_query("INSERT INTO fidelite_log SET id_user='".$_SESSION["config_user"]["id_user"]."', type='fiche', points='".$rf["fiche"]."', date=NOW()" );
  35.     $_SESSION["fiche_"."$id_resto"]="visited";
  36. }
  37. ?>
  38. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  39. <html xmlns="http://www.w3.org/1999/xhtml">
  40. <head>
  41.  
  42. <link rel="stylesheet" type="text/css" href="style.css"/>
  43. <link rel="stylesheet" type="text/css" href="js_scripts/jquery.fancybox/jquery.fancybox.css" media="screen" />
  44. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery-1.3.2.min.js"></script>
  45. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery.easing.1.3.js"></script>
  46. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery.fancybox-1.2.1.pack.js"></script>
  47. </head>
  48.  
  49. <body>
  50. <h1>Restaurant à <strong><?=$r["$tab_champs[2]"];?> <?=$r["$tab_champs[1]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong></h1>
  51. <? include("headerhtml.inc.php" ); ?>
  52.  
  53. <div id="cadre">
  54.  
  55.     
  56.    <table width="100%" cellpadding="0" cellspacing="0" border="0" id="tfiche">
  57.        <tr>
  58.            <td style="vertical-align:top;">
  59.                <div id="details2">
  60.                    
  61.                    <h4>Restaurant à <?=$r["$tab_champs[2]"];?><br /><i><?=$r["$tab_champs[1]"];?> </i></h4>
  62.                     <?
  63.                         if(trim($r["youtube_link"])!='')
  64.                         {
  65.                         ?>
  66.                        <div id="video">
  67.                        <object width="400" height="260"><param name="movie" value="<?=$r["youtube_link"];?>"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent" /></param><embed src="<?=$r["youtube_link"];?>" type="application/x-shockwave-flash" allowscriptaccess="always" wmode="transparent" allowfullscreen="true" width="400" height="260"></embed></object>
  68.                        </div>
  69.                        <?
  70.                         }
  71.                         
  72.                         ?>
  73.     
  74.                </div>
  75.                
  76.                </div>
  77.              
  78.            </td>
  79.             
  80.            <td style="width:300px; vertical-align:top;">
  81.             
  82.            
  83.                 
  84.              
  85.                 <?
  86.                     if ($r["$tab_champs[13]"]=='y')
  87.                     {
  88.                     ?>
  89.                    <br><div id="reserver" ><a href="reservations-<?=format_url($r["$tab_champs[1]"].'-'.$r["$tab_champs[2]"]).'-'.$r["$tab_champs[0]"];?>.html"><img src="reserver.jpg" alt="" /></a></div>
  90.                    <?
  91.                     }
  92.                     ?>
  93.                 
  94.                     
  95.  
  96.                 <?
  97.                $tab_photos=array();
  98.                 for($i=1;$i<=8;$i++)
  99.                {
  100.                    $path_img = 'photos/'.$r["id"].'_'.$i.'.jpg';
  101.                    $path_img2 = 'photos/'.$r["id"].'_'.$i.'_125.jpg';
  102.                    if(file_exists($path_img)) { $tab_photos[]=array($i,$id_resto,$path_img,$path_img2); }
  103.                }
  104.                if (@count($tab_photos)>0)
  105.                {
  106.                ?>
  107.                <script type="text/javascript">
  108.                 $(document).ready(function()
  109.                 {
  110.                     $("a.group" ).fancybox();
  111.                 });
  112.                 </script><br>
  113.             
  114.                 
  115.                <div id="photos">
  116.                    <?
  117.                     $cpt=1;
  118.                    foreach($tab_photos as $val)
  119.                    {
  120.                    ?>
  121.                    <p style="float:left; width:130px; margin-bottom:10px; <? if ($cpt%2!=0) { echo 'margin-right:10px;'; } ?>"><a class="group" rel="group" title="Photo <?=$cpt;?>" href="<?=$val[2];?>"><img src="<?=$val[3];?>" alt="Photo <?=$cpt;?>" /></a></p>
  122.                    <?
  123.                     $cpt++;
  124.                    }
  125.                    ?>
  126.                </div><br>
  127.                <?
  128.                }
  129.                 ?>
  130.                 <br><br>
  131.                 
  132.                    </div>
  133.                    
  134.                    
  135.                </div>
  136.            </td>
  137.        </tr>
  138.    </table>
  139.     <div id="back"><a href="resultats.php?recherche=<?=urlencode($_SESSION["recherche"]);?><? if ($_SESSION["p"]>1) { echo '&p='.$_SESSION["p"]; } ?>">Retour à ma recherche</a></div>
  140.     
  141. </div>
  142. <? include("footer.inc.php" ); ?>
  143. </body>
  144. </html>

Message cité 1 fois
Message édité par Elmoricq le 16-11-2010 à 14:24:02
mood
Publicité
Posté le 16-11-2010 à 13:57:17  profilanswer
 

n°2036283
skeye
Posté le 16-11-2010 à 14:03:44  profilanswer
 

j'allais le dire.


---------------
Can't buy what I want because it's free -
n°2036288
drasche
Posté le 16-11-2010 à 14:08:57  profilanswer
 

Le beau jocebug que voilà.


---------------
Whichever format the fan may want to listen is fine with us – vinyl, wax cylinders, shellac, 8-track, iPod, cloud storage, cranial implants – just as long as it’s loud and rockin' (Billy Gibbons, ZZ Top)
n°2036289
drasche
Posté le 16-11-2010 à 14:09:07  profilanswer
 

Bonjour,
 
je n'arrive pas à intégrer le code IF tel que : si la vidéo est présente, on l'affiche, sinon on affiche une image à la place.
Tout en gardant le script fancybox dejà en place et en utilisant le chemin des images que l'on affiche avec le fancybox  
J'ai essayé mais ça ne marche pas , je n'ai pas le bon raisonnement.
C'est pour une etude proposée par un prof
Merci
 

Code :
  1. [code=css]<?
  2. include("header.inc.php" );
  3. $id_resto=$_GET["id"];
  4. $query_exists = mysql_query("SELECT COUNT(id) FROM resto WHERE id='$id_resto'" );
  5. $result_exists = mysql_fetch_row($query_exists);
  6. if ($result_exists[0]==0)
  7. {
  8. header("HTTP/1.1 301 Moved Permanently" );
  9. header("Location: index.php" );
  10. die("Redirection" );
  11. }
  12. else
  13. {
  14.  // champs à sélectionner / à afficher
  15. $tab_champs = array("id","title","city","note","description","address","phone","website","cap","menu_entree","menu_plat","menu_dessert","youtube_link","resa","horferm","pain","prix","serviette","latable","sympaekip","aime","aimemoins","ofinal" );
  16. $chr_champs='';
  17. foreach($tab_champs as $val) $chr_champs.=$val.', ';
  18. $chr_champs=substr($chr_champs,0,-2);
  19. $q = mysql_query("SELECT $chr_champs FROM resto WHERE id='$id_resto'" );
  20. $r = mysql_fetch_assoc($q);
  21. $quser = mysql_query("SELECT id_user FROM users_restos WHERE id_resto='$r[id]'" ) or die(mysql_error());
  22. $ruser = mysql_fetch_assoc($quser);
  23. }
  24. // mise a jour des affichages du resto
  25. mysql_query("UPDATE resto SET hits=hits+1 WHERE id='$id_resto'" );
  26. if ($_SESSION["config_user"]["id_user"]>0 && $_SESSION["config_user"]["id_user"]!=$ruser["id_user"] && $_SESSION["fiche_"."$id_resto"]!="visited" )
  27. {
  28. $qf = mysql_query("SELECT fiche FROM fidelite_config" );
  29. $rf = mysql_fetch_assoc($qf);
  30. mysql_query("UPDATE users_fidelite SET fiche=fiche+'".$rf["fiche"]."' WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  31. mysql_query("UPDATE users SET points=points+".$rf["fiche"]." WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  32. mysql_query("INSERT INTO fidelite_log SET id_user='".$_SESSION["config_user"]["id_user"]."', type='fiche', points='".$rf["fiche"]."', date=NOW()" );
  33. $_SESSION["fiche_"."$id_resto"]="visited";
  34. }
  35. ?>
  36. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  37. <html xmlns="http://www.w3.org/1999/xhtml">
  38. <head>
  39. <link rel="stylesheet" type="text/css" href="style.css"/>
  40. <link rel="stylesheet" type="text/css" href="js_scripts/jquery.fancybox/jquery.fancybox.css" media="screen" />
  41. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery-1.3.2.min.js"></script>
  42. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery.easing.1.3.js"></script>
  43. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery.fancybox-1.2.1.pack.js"></script>
  44. </head>
  45. <body>
  46. <h1>Restaurant à <strong><?=$r["$tab_champs[2]"];?> <?=$r["$tab_champs[1]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong></h1>
  47. <? include("headerhtml.inc.php" ); ?>
  48. <div id="cadre">
  49.     <table width="100%" cellpadding="0" cellspacing="0" border="0" id="tfiche">
  50.      <tr>
  51.       <td style="vertical-align:top;">
  52.                 <div id="details2">
  53.                    
  54.                     <h4>Restaurant à <?=$r["$tab_champs[2]"];?><br /><i><?=$r["$tab_champs[1]"];?> </i></h4>
  55.     <?
  56.      if(trim($r["youtube_link"])!='')
  57.      {
  58.      ?>
  59.                         <div id="video">
  60.                         <object width="400" height="260"><param name="movie" value="<?=$r["youtube_link"];?>"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent" /></param><embed src="<?=$r["youtube_link"];?>" type="application/x-shockwave-flash" allowscriptaccess="always" wmode="transparent" allowfullscreen="true" width="400" height="260"></embed></object>
  61.                         </div>
  62.                         <?
  63.      }
  64.      ?>
  65.                 </div>
  66.                
  67.                 </div>
  68.              
  69.       </td>
  70.             <td style="width:300px; vertical-align:top;">
  71.            
  72.              
  73.    <?
  74.     if ($r["$tab_champs[13]"]=='y')
  75.     {
  76.     ?>
  77.                     <br><div id="reserver" ><a href="reservations-<?=format_url($r["$tab_champs[1]"].'-'.$r["$tab_champs[2]"]).'-'.$r["$tab_champs[0]"];?>.html"><img src="reserver.jpg" alt="" /></a></div>
  78.                     <?
  79.     }
  80.     ?>
  81.    <?
  82.                 $tab_photos=array();
  83.    for($i=1;$i<=8;$i++)
  84.                 {
  85.                     $path_img = 'photos/'.$r["id"].'_'.$i.'.jpg';
  86.                     $path_img2 = 'photos/'.$r["id"].'_'.$i.'_125.jpg';
  87.                     if(file_exists($path_img)) { $tab_photos[]=array($i,$id_resto,$path_img,$path_img2); }
  88.                 }
  89.                 if (@count($tab_photos)>0)
  90.                 {
  91.                 ?>
  92.                 <script type="text/javascript">
  93.    $(document).ready(function()
  94.    {
  95.     $("a.group" ).fancybox();
  96.    });
  97.    </script><br>
  98.                 <div id="photos">
  99.                     <?
  100.     $cpt=1;
  101.                     foreach($tab_photos as $val)
  102.                     {
  103.                     ?>
  104.                     <p style="float:left; width:130px; margin-bottom:10px; <? if ($cpt%2!=0) { echo 'margin-right:10px;'; } ?>"><a class="group" rel="group" title="Photo <?=$cpt;?>" href="<?=$val[2];?>"><img src="<?=$val[3];?>" alt="Photo <?=$cpt;?>" /></a></p>
  105.                     <?
  106.     $cpt++;
  107.                     }
  108.                     ?>
  109.                 </div><br>
  110.                 <?
  111.                 }
  112.    ?>
  113.    <br><br>
  114.                     </div>
  115.                    
  116.                    
  117.                 </div>
  118.       </td>
  119.      </tr>
  120.     </table>
  121. <div id="back"><a href="resultats.php?recherche=<?=urlencode($_SESSION["recherche"]);?><? if ($_SESSION["p"]>1) { echo '&p='.$_SESSION["p"]; } ?>">Retour à ma recherche</a></div>
  122. </div>
  123. <? include("footer.inc.php" ); ?>
  124. </body>
  125. </html>


---------------
Whichever format the fan may want to listen is fine with us – vinyl, wax cylinders, shellac, 8-track, iPod, cloud storage, cranial implants – just as long as it’s loud and rockin' (Billy Gibbons, ZZ Top)
n°2036290
drasche
Posté le 16-11-2010 à 14:09:14  profilanswer
 

Dingue.


---------------
Whichever format the fan may want to listen is fine with us – vinyl, wax cylinders, shellac, 8-track, iPod, cloud storage, cranial implants – just as long as it’s loud and rockin' (Billy Gibbons, ZZ Top)
n°2036292
vapeur_coc​honne
Stig de Loisir
Posté le 16-11-2010 à 14:10:00  profilanswer
 

Code :
  1. [code=css]<?
  2. include("header.inc.php" );
  3. $id_resto=$_GET["id"];
  4. $query_exists = mysql_query("SELECT COUNT(id) FROM resto WHERE id='$id_resto'" );
  5. $result_exists = mysql_fetch_row($query_exists);
  6. if ($result_exists[0]==0)
  7. {
  8. header("HTTP/1.1 301 Moved Permanently" );
  9. header("Location: index.php" );
  10. die("Redirection" );
  11. }
  12. // mise a jour des affichages du resto
  13. mysql_query("UPDATE resto SET hits=hits+1 WHERE id='$id_resto'" );
  14. if ($_SESSION["config_user"]["id_user"]>0 && $_SESSION["config_user"]["id_user"]!=$ruser["id_user"] && $_SESSION["fiche_"."$id_resto"]!="visited" )
  15. {
  16. $qf = mysql_query("SELECT fiche FROM fidelite_config" );
  17. $rf = mysql_fetch_assoc($qf);
  18. mysql_query("UPDATE users_fidelite SET fiche=fiche+'".$rf["fiche"]."' WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  19. mysql_query("UPDATE users SET points=points+".$rf["fiche"]." WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  20. mysql_query("INSERT INTO fidelite_log SET id_user='".$_SESSION["config_user"]["id_user"]."', type='fiche', points='".$rf["fiche"]."', date=NOW()" );
  21. $_SESSION["fiche_"."$id_resto"]="visited";
  22. }
  23. ?>
  24. <body>
  25. <h1>Restaurant à <strong><?=$r["$tab_champs[2]"];?> <?=$r["$tab_champs[1]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong></h1>
  26. <? include("headerhtml.inc.php" ); ?>
  27. <div id="cadre">
  28.     <table width="100%" cellpadding="0" cellspacing="0" border="0" id="tfiche">
  29.      <tr>
  30.       <td style="vertical-align:top;">
  31.                 <div id="details2">
  32.                    
  33.                     <h4>Restaurant à <?=$r["$tab_champs[2]"];?><br /><i><?=$r["$tab_champs[1]"];?> </i></h4>
  34.     <?
  35.      if(trim($r["youtube_link"])!='')
  36.      {
  37.      ?>
  38.             <td style="width:300px; vertical-align:top;">
  39.            
  40.              
  41. <? include("footer.inc.php" ); ?>
  42. </body>
  43. </html>

[/quotemsg]


Message édité par vapeur_cochonne le 16-11-2010 à 14:24:58

---------------
marilou repose sous la neige
n°2036298
R3g
fonctionnaire certifié ITIL
Posté le 16-11-2010 à 14:13:33  profilanswer
 

test

Code :
  1. [code=css]<?
  2. <h1>Restaurant à <strong><?=$r["$tab_champs[2]"];?> <?=$r["$tab_champs[1]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong></h1>
  3. <? include("headerhtml.inc.php" ); ?>
  4. <div id="cadre">
  5. <div id="back"><a href="resultats.php?recherche=<?=urlencode($_SESSION["recherche"]);?><? if ($_SESSION["p"]>1) { echo '&p='.$_SESSION["p"]; } ?>">Retour à ma recherche</a></div>
  6. </div>
  7. <? include("footer.inc.php" ); ?>
  8. </body>
  9. </html>


Message édité par R3g le 16-11-2010 à 14:53:41

---------------
Au royaume des sourds, les borgnes sont sourds.
n°2036299
drasche
Posté le 16-11-2010 à 14:14:02  profilanswer
 

C'est malin, on ne va pas pouvoir l'aider maintenant [:petrus75]


---------------
Whichever format the fan may want to listen is fine with us – vinyl, wax cylinders, shellac, 8-track, iPod, cloud storage, cranial implants – just as long as it’s loud and rockin' (Billy Gibbons, ZZ Top)
n°2036305
erulio
Posté le 16-11-2010 à 14:18:15  profilanswer
 

Code :
  1. [code=css]
  2. if ($_SESSION["config_user"]["id_user"]>0 && $_SESSION["config_user"]["id_user"]!=$ruser["id_user"] && $_SESSION["fiche_"."$id_resto"]!="visited" )
  3. { $qf = mysql_query("SELECT fiche FROM fidelite_config" );
  4. $rf = mysql_fetch_assoc($qf);
  5. mysql_query("UPDATE users_fidelite SET fiche=fiche+'".$rf["fiche"]."' WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  6. mysql_query("UPDATE users SET points=points+".$rf["fiche"]." WHERE id_user='".$_SESSION["config_user"]["id_user"]."'" );
  7. mysql_query("INSERT INTO fidelite_log SET id_user='".$_SESSION["config_user"]["id_user"]."', type='fiche', points='".$rf["fiche"]."', date=NOW()" );
  8. $_SESSION["fiche_"."$id_resto"]="visited";
  9. }
  10. ?>
  11. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  12. <html xmlns="http://www.w3.org/1999/xhtml">
  13. <head>
  14. <link rel="stylesheet" type="text/css" href="style.css"/>
  15. <link rel="stylesheet" type="text/css" href="js_scripts/jquery.fancybox/jquery.fancybox.css" media="screen" />
  16. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery-1.3.2.min.js"></script>
  17. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery.easing.1.3.js"></script>
  18. <script type="text/javascript" src="js_scripts/jquery.fancybox/jquery.fancybox-1.2.1.pack.js"></script>
  19. </head>
  20. <body>
  21. <h1>Restaurant à <strong><?=$r["$tab_champs[2]"];?> <?=$r["$tab_champs[1]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong> Restaurant <strong><?=$r["$tab_champs[2]"];?></strong></h1>
  22. <? include("headerhtml.inc.php" ); ?>
  23. <div id="cadre">
  24.     <table width="100%" cellpadding="0" cellspacing="0" border="0" id="tfiche">
  25.      <tr>
  26.       <td style="vertical-align:top;">
  27.                 <div id="details2">
  28.                    
  29.                     <h4>Restaurant à <?=$r["$tab_champs[2]"];?><br /><i><?=$r["$tab_champs[1]"];?> </i></h4>
  30.     <?
  31.      if(trim($r["youtube_link"])!='')
  32.      {
  33.      ?>
  34.                         <div id="video">                        <object width="400" height="260"><param name="movie" value="<?=$r["youtube_link"];?>"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent" /></param><embed src="<?=$r["youtube_link"];?>" type="application/x-shockwave-flash" allowscriptaccess="always" wmode="transparent" allowfullscreen="true" width="400" height="260"></embed></object>
  35.                         </div>
  36.                         <?


Message édité par erulio le 16-11-2010 à 14:21:51
n°2036308
Modération
Posté le 16-11-2010 à 14:21:30  answer
 

Je laisse vos reproductions du problème pour le cas où un admin passe par ici.
En attendant, fin du HS siouplaitmerci. :o


Aller à :
Ajouter une réponse
  FORUM HardWare.fr
  Programmation
  PHP

  Insérer une image soit une video?

 

Sujets relatifs
Scan d'un dossier image, lecture des images une par une en boucletraitement Image
[VBA] Dimension d'une imageRecherche de personne motivée pour un projet de jeux video
Problème background imageas3 stopper fonction vidéo dans un child swf chargé dynamiquement
Comment rendre visible une image cachée au survol d'un lien ?Trouver une forme dans une image (réseau de neurones)
Interdire hotlinking d'image & URL Directe 
Plus de sujets relatifs à : Insérer une image soit une video?


Copyright © 1997-2022 Hardware.fr SARL (Signaler un contenu illicite / Données personnelles) / Groupe LDLC / Shop HFR