No affichage d'un script

No affichage d'un script - PHP - Programmation

Marsh Posté le 27-08-2003 à 15:01:23    

voila j'ai 2 script en php different sur la meme page  se conectant a la meme base de donnée oui mais voila ya un script sur les 2 qui s'affiche pourtant il fonctione tt les deux car qd on les met separement il fonctione  
 

Citation :


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>.:Carolo-Namur:::</title>
<link href="../style.css" rel="stylesheet" type="text/css">
</head>
<BODY background="../_images/fond.gif" text="#000000" link="#000000" vlink="#000000" alink="#000000" OnLoad="window.defaultStatus='Carolo-Namur - www.carolo-namur.be.tf';">
<div align="center">  
  <table width="740" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" class="background">
    <!--DWLayoutTable-->
    <tr>  
      <td width="118" height="70" valign="top" bgcolor="#CCCCCC"><div align="center"><img src="../_images/blaso_gauche.gif" width="70" height="70"></div></td>
      <td colspan="3" valign="top" bgcolor="#CCCCCC"> <div align="center">  
          <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="480" height="70">
            <param name="movie" value="../_flash/titre.swf">
            <param name="quality" value="high">
            <embed src="../_flash/titre.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="480" height="70"></embed></object>
        </div></td>
      <td width="112" valign="top" bgcolor="#CCCCCC"><div align="center"><img src="../_images/blaso_droit.gif" width="70" height="70"></div></td>
    </tr>
    <tr bgcolor="#FFFFFF">  
      <td height="17" colspan="5" valign="top"><!--DWLayoutEmptyCell-->&nbsp;</td>
    </tr>
    <tr bgcolor="#CCCCCC" class="menu">  
      <td height="18" colspan="5" valign="top">  
        <div class="menu"><a href="../index.php" target="_parent">Accueil  
          </a>| Comit&eacute; | Bleu | Agenda | Photos | Historique | Carnet d'adresse  
          |  
          <script language=javascript>
        function mywindow(page,name,option){
        window.open(page,name,option)
        }
        </script>
          <a href="javascript:mywindow('../_forum/index.php','forum','width=700,height=550, status=yes, directories=no, toolbar=no, location=no, menubar=no, scrollbars=yes, resizable=yes')"><font size="2">Forum</font>  
          </a> | <a href="../_pages/livreor.htm" target="_parent">Livre d?or</a>  
          | <a href="../_pages/liens.htm" target="_parent">Liens</a></div></td>
    </tr>
    <tr>  
      <td height="35">&nbsp;</td>
      <td width="201"></td>
      <td width="102"></td>
      <td width="207"></td>
      <td></td>
    </tr>
    <tr>  
      <td height="15" colspan="2" valign="top"><img src="../_images/agenda.png" width="319" height="15"></td>
      <td></td>
      <td colspan="2" valign="top"><img src="../_images/forum_msg.png" width="319" height="15"></td>
    </tr>
    <tr> <!-- TemplateBeginEditable name="Agenda" -->  
      <td height="178" colspan="2" valign="top" bgcolor="#CCCCCC" class="news">  
        <div align="left">  
   

Code :
  1. <? // on se connecte à MySQL  
  2.   $db = mysql_connect('localhost', 'xxxxxxx', 'xxxxxxx');
  3.      // on séléctionne la base   
  4.      mysql_select_db('unitelov',$db); 
  5.  
  6.      // on créer la requete SQL et on l'envoie   
  7.      $sql = 'SELECT id, description FROM  pme_agenda '; 
  8.  
  9.      // on envoie la requete  
  10.   $req = mysql_query($sql) or die('Erreur SQL !<br>'.$sql.'<br>'.mysql_error());
  11.   // on fait une boucle qui va faire un tour pour chaque enregistrements  
  12.   while($data = mysql_fetch_array($req))
  13.        {
  14.       // on affiche les informations de l'enregistrements en cours  
  15.       echo ' <i>date de naissance : '.$data['description'].'</i><br>';
  16.       }
  17.   // on ferme la connexion à mysql     
  18. mysql_close();
  19. ?>


        </div></td>
      <!-- TemplateEndEditable -->  
      <td>&nbsp;</td>
      <td colspan="2" valign="top" bgcolor="#CCCCCC" class="forum">  
   

Code :
  1. <? // on se connecte à MySQL  
  2.   $db = mysql_connect('localhost', 'xxxxxxx', 'xxxxxx');
  3.      // on séléctionne la base   
  4.      mysql_select_db('unitelov',$db); 
  5.  
  6.      // on créer la requete SQL et on l'envoie   
  7.      $sql = 'SELECT topic_id, topic_title FROM caroloforum_topics ORDER BY topic_id DESC LIMIT 0,11'; 
  8.  
  9.      // on envoie la requete   
  10.      $req = mysql_query($sql) or die('Erreur SQL !<br>'.$sql.'<br>'.mysql_error()); 
  11.    
  12.      // on fait une boucle qui va faire un tour pour chaque enregistrements   
  13.      while($data = mysql_fetch_array($req)) 
  14.        { 
  15.          // on affiche les informations de l'enregistrements en cours   
  16.          $length = 40; 
  17.       echo "<a href=\"http://uniteloverval.behostings.be/carolo/_forum/viewtopic.php?t=".$data['topic_id']."\"><li>"   .substr($data['topic_title'], 0, $length)."</li></a>"; 
  18.      } 
  19.   // on ferme la connexion à mysql     
  20. mysql_close();
  21. ?>


      </td>
    </tr>
    <tr>  
      <td height="15" colspan="2" valign="top"><div align="center"><img src="../_images/bas_petit.png" width="319" height="15"></div></td>
      <td></td>
      <td colspan="2" valign="top"><div align="center"><img src="../_images/bas_petit.png" width="319" height="15"></div></td>
    </tr>
    <tr>  
      <td height="46">&nbsp;</td>
      <td></td>
      <td></td>
      <td></td>
      <td></td>
    </tr>
    <tr>  
      <td height="15" colspan="5" valign="top"><div align="center"><img src="../_images/edito_bar.png" width="739" height="15"></div></td>
    </tr>
    <tr bgcolor="#CCCCCC" class="edito"> <!-- TemplateBeginEditable name="Edito" -->  
      <td height="172" colspan="5" valign="top"> <div align="center"></div></td>
      <!-- TemplateEndEditable --></tr>
    <tr>  
      <td height="15" colspan="5" valign="top"><div align="center"><img src="../_images/edito_bar_bas.PNG" width="739" height="15"></div></td>
    </tr>
    <tr bgcolor="#FFFFFF">  
      <td height="25" colspan="5" valign="top"><!--DWLayoutEmptyCell-->&nbsp;</td>
    </tr>
    <tr bgcolor="#CCCCCC">  
      <td height="15" colspan="5" valign="top" class="sign">Copyright Carolo-Namur.be.tf  
        &reg; Tous droits r&eacute;serv&eacute;s 2003-2004. Webmaster <a href="ditemonsieur@hotmail.com">Gunth</a>  
        , <a href="kodi40@hotmail.com">Kodi</a> </td>
    </tr>
  </table>
</div>
</body>
</html>


 
voila j'aimerais savoir d'ou cela peut t'il venir ??


Message édité par Gauthier le 27-08-2003 à 15:07:17
Reply

Marsh Posté le 27-08-2003 à 15:01:23   

Reply

Marsh Posté le 27-08-2003 à 15:24:17    

Pas besoin de se connecter une deuxième fois à la BDD...


---------------
Incongru : une FAQ abandonnée sur les Standards du Web - FAQ périmée de blabla@Prog
Reply

Marsh Posté le 27-08-2003 à 15:25:42    

on fait comment pour modifier ca ?

Reply

Marsh Posté le 27-08-2003 à 15:33:25    

Reply

Marsh Posté le 27-08-2003 à 15:36:28    

Citation :

<? // on se connecte à MySQL  
   $db = mysql_connect('localhost', 'xxxxxxx', 'xxxxxxx');  
 
     // on séléctionne la base  
     mysql_select_db('unitelov',$db);  
   
     // on créer la requete SQL et on l'envoie  
     $sql = 'SELECT id, description FROM  pme_agenda ';  
   
     // on envoie la requete  
   $req = mysql_query($sql) or die('Erreur SQL !<br>'.$sql.'<br>'.mysql_error());  
 
   // on fait une boucle qui va faire un tour pour chaque enregistrements  
   while($data = mysql_fetch_array($req))  
       {  
      // on affiche les informations de l'enregistrements en cours  
      echo ' <i>date de naissance : '.$data['description'].'</i><br>';  
      }  


 
   
   
 
   

Citation :


     // on créer la requete SQL et on l'envoie  
     $sql = 'SELECT topic_id, topic_title FROM caroloforum_topics ORDER BY topic_id DESC LIMIT 0,11';  
   
     // on envoie la requete  
     $req = mysql_query($sql) or die('Erreur SQL !<br>'.$sql.'<br>'.mysql_error());  
     
     // on fait une boucle qui va faire un tour pour chaque enregistrements  
     while($data = mysql_fetch_array($req))  
       {  
         // on affiche les informations de l'enregistrements en cours  
         $length = 40;  
      echo "<a href=\"http://uniteloverval.behostings.be/carolo/_forum/viewtopic.php?t=".$data['topic_id']."\"><li>"   .substr($data['topic_title'], 0, $length)."</li></a>";  
     }  
  // on ferme la connexion à mysql    
mysql_close();  
?>
 


 
c bon comme ca ?

Reply

Marsh Posté le 27-08-2003 à 15:52:59    

Essaye [:spamafote]
 
Mais a priori ça a l'air correct...


---------------
Incongru : une FAQ abandonnée sur les Standards du Web - FAQ périmée de blabla@Prog
Reply

Marsh Posté le 27-08-2003 à 15:56:10    

beh non ca marche po g une erreur
 
 
Warning: mysql_query(): Access denied for user: 'nobody@localhost' (Using password: NO) in /home/unitelov/www/carolo/index.php on line 60
 
Warning: mysql_query(): A link to the server could not be established in /home/unitelov/www/carolo/index.php on line 60
Erreur SQL !
SELECT topic_id, topic_title FROM caroloforum_topics ORDER BY topic_id DESC LIMIT 0,11
Access denied for user: 'nobody@localhost' (Using password: NO)

Reply

Marsh Posté le 27-08-2003 à 16:25:08    

essaye en enlevant le premier "mysql_close();"

Reply

Marsh Posté le 27-08-2003 à 16:41:26    

ben c dega fais g mis mes script tel quelle qu'il sont 2 post + haut

Reply

Marsh Posté le 27-08-2003 à 17:14:49    

gauthier a écrit :

ben c dega fais g mis mes script tel quelle qu'il sont 2 post + haut


 
C'est bien gentil tout ça, mais je trouve que c'est un peu abusé ta question...
Fais au moins l'effort une fois dans ta vie d'aller sur phpdebutant.org et fais les tutos concernant les BDD. Tu vas alors comprendre et tout seul en 1 heure maxi ce qui ne va pas dans les scripts que tu récupères ici ou là.
 
De toutes manières, si tu veux faire qqc de sérieux, tu devras y passer tôt ou tard.
 

Reply

Marsh Posté le 27-08-2003 à 17:14:49   

Reply

Marsh Posté le 27-08-2003 à 18:55:49    

et si tu nous donner un plus d'info du style y a quoi ligne 59,60,61 ??

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed