modulo et recuperation de cours

modulo et recuperation de cours - PHP - Programmation

Marsh Posté le 10-08-2006 à 14:35:46    

bonjour je voudrais faire un modulo dans mon tableau mais je sais pas comment, je comprends rien a tous les tuto dispo sur le net. voila le code de ma page:
 
<body>
<? include ("../../connexion.php" ); ?>
 
<table>
 <tr>
   <td>Nom</td>
  <td>Ticker</td>
  <td>Secteur</td>
  <td>Nombre d'actions</td>
  <td>Cours</td>
  </tr>
<? $req=mysql_query("SELECT*FROM cac ORDER BY nom" );
while ($res=mysql_fetch_array($req))
 {?>
 
  <tr>
  <td><? echo $res['nom'];?></td>
  <td><? echo $res['ticker'];?></td>
  <td><? echo $res['secteur'];?></td>
  <td><? echo $res['nbaction'];?></td>  
 </tr>
<? }  
?>
 
</table>
</body>

 
et je voudrais aussi recupérer des cours de bourse sur yahoo! pour les insérer dans mon tableau dans la colonnes cours.
 
Merci

Reply

Marsh Posté le 10-08-2006 à 14:35:46   

Reply

Marsh Posté le 10-08-2006 à 14:36:34    

en fait je suis debutant

Reply

Marsh Posté le 10-08-2006 à 14:39:25    

c est quoi d apres toi un modulo ? :/

Reply

Marsh Posté le 10-08-2006 à 14:44:11    

c'est ca %

Reply

Marsh Posté le 10-08-2006 à 14:54:06    

et tu veux en faire?

Reply

Marsh Posté le 10-08-2006 à 14:56:55    

ben ouais, je voudrais afficher les lignes de mon tableau de 2 couleurs différentes et alternées.

Reply

Marsh Posté le 10-08-2006 à 14:59:14    

Code :
  1. $odd=0;
  2. while ($res=mysql_fetch_array($req))
  3. $odd++;
  4. {?>
  5.   <tr>
  6.    <td style="background-color:<?=$odd%2?red:blue;?>"><? echo $res['nom'];?></td>
  7. ...
  8. </tr>


Message édité par anapajari le 10-08-2006 à 14:59:36
Reply

Marsh Posté le 10-08-2006 à 15:01:13    

merci mais la boucle je la mais ou exactement dans mon code?

Reply

Marsh Posté le 10-08-2006 à 15:28:09    

je l'ai fait mais ca marche pas. Il me dit "parse error"

Reply

Marsh Posté le 10-08-2006 à 15:30:14    

Code :
  1. <table>
  2. <tr>
  3.   <td>Nom</td>
  4.  <td>Ticker</td>
  5.  <td>Secteur</td>
  6.  <td>Nombre d'actions</td>
  7.  <td>Cours</td>
  8.  </tr>
  9. <? $req=mysql_query("SELECT*FROM cac ORDER BY nom" );
  10. $odd=0;
  11. while ($res=mysql_fetch_array($req))
  12. $odd++;
  13. {?>
  14.  <tr>
  15.  <td style="background-color:<? =$odd%2?red:blue;?>"><? echo $res['nom'];?></td>
  16.  <td style="background-color:<? =$odd%2?red:blue;?>"><? echo $res['ticker'];?></td>
  17.  <td style="background-color:<? =$odd%2?red:blue;?>"><? echo $res['secteur'];?></td>
  18.  <td style="background-color:<? =$odd%2?red:blue;?>"><? echo $res['nbaction'];?></td>
  19. </tr>
  20. <? }
  21. ?>
  22. </table>

Reply

Marsh Posté le 10-08-2006 à 15:30:14   

Reply

Marsh Posté le 10-08-2006 à 15:31:15    

L'erreur est a la ligne 16

Reply

Marsh Posté le 10-08-2006 à 15:35:43    

while ($res=mysql_fetch_array($req))
    $odd++;
    {?>
 
That's not going to fly.


---------------
Now Playing: {SYNTAX ERROR AT LINE 1210}
Reply

Marsh Posté le 10-08-2006 à 15:36:28    

:hello:  
 
qq'un saurait-il comment on recupere les cours de bourse sur yahoo???
 
Merci :cry:  :cry:  :cry:

Reply

Marsh Posté le 10-08-2006 à 15:37:57    

sircam a écrit :

while ($res=mysql_fetch_array($req))
    $odd++;
    {?>
 
That's not going to fly.


 
pas compris, c'est exactement la meme chose que dans le code que j'ai posté. Ou alors me montrerais tu une erreur??

Reply

Marsh Posté le 10-08-2006 à 15:43:03    

sircam a écrit :

while ($res=mysql_fetch_array($req))
    $odd++;
    {?>
 
That's not going to fly.


 :whistle:  
 

Code :
  1. while ($res=mysql_fetch_array($req))
  2.     {
  3.       $odd++;
  4. ?>


 
Et pour ton problème Yahoo, Bin demande à yahoo [:spamafote]

Reply

Marsh Posté le 10-08-2006 à 16:01:01    

tjs erreur parse

Reply

Marsh Posté le 10-08-2006 à 16:08:21    

Et si tu te sortais un peu les doigts du ... ???
Laisse moi deviner, l'erreur c'est un truc genre:

Citation :

Parse error: syntax error, unexpected '=' in ... on line X


Naaan?
A la ligne X tu as quoi?

Code :
  1. <? =$odd%2?red:blue;?>


Tu regardes le code que je t'ai filé tu as:

Code :
  1. <?=$odd%2?red:blue;?>


Tu en déduis?

Reply

Marsh Posté le 10-08-2006 à 16:22:35    

l'erreur:  
Parse error: parse error in c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php on line 27
 
A la ligne 27, j'ai:
<td style="background-color:<? =$odd%2?red:blue;?>"><? echo $res['nom'];?></td>

Reply

Marsh Posté le 10-08-2006 à 16:23:47    

ah j'ai levé l'espace entre ? et =
ya plus d'erreur mais ya pas de couleur

Reply

Marsh Posté le 10-08-2006 à 16:27:21    

c ballot ...

Reply

Marsh Posté le 10-08-2006 à 16:39:40    

Citation :

c ballot ...


Je vous rappelle que je suis débutant. Sinon j'ai toujours pas compris car ya pas les couleurs :??:  :??:  :fou:

Reply

Marsh Posté le 10-08-2006 à 22:47:01    

tu affiches le code HTML généré :o

Reply

Marsh Posté le 11-08-2006 à 18:06:32    

gatsu35 a écrit :

tu affiches le code HTML généré :o


????


---------------
[:bossik]
Reply

Marsh Posté le 11-08-2006 à 18:08:47    

page a toi y en a etre quand meme affichee meme si php afficher parse error toi y en a cliquer sur "voir source" et toi y en a donner code a nous

Reply

Marsh Posté le 11-08-2006 à 19:38:05    

Voila la source
 
Merci les gars quand meme, meme si g du mal
 

Code :
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>Composition CAC 40</title>
  6. </head>
  7. <body>
  8. <table>
  9. <tr>
  10.   <td>Nom</td>
  11.  <td>Ticker</td>
  12.  <td>Secteur</td>
  13.  <td>Nombre d'actions</td>
  14.  <td>Cours</td>
  15.  </tr>
  16.  <tr >
  17.  <td style="background-color:<br />
  18. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  19. red">ACCOR</td>
  20.  <td style="background-color:<br />
  21. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  22. red">AC.PA</td>
  23.  <td style="background-color:<br />
  24. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  25. red">Loisirs</td>
  26.  <td style="background-color:<br />
  27. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  28. red">217285000</td>
  29. </tr>
  30.  <tr >
  31.  <td style="background-color:<br />
  32. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  33. blue">AGF</td>
  34.  <td style="background-color:<br />
  35. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  36. blue">AGF.PA</td>
  37.  <td style="background-color:<br />
  38. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  39. blue">Assurances</td>
  40.  <td style="background-color:<br />
  41. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  42. blue">190523000</td>
  43. </tr>
  44.  <tr >
  45.  <td style="background-color:<br />
  46. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  47. red">AIR LIQUIDE</td>
  48.  <td style="background-color:<br />
  49. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  50. red">AI.PA</td>
  51.  <td style="background-color:<br />
  52. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  53. red">Chimie de Base</td>
  54.  <td style="background-color:<br />
  55. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  56. red">120146000</td>
  57. </tr>
  58.  <tr >
  59.  <td style="background-color:<br />
  60. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  61. blue">ALCATEL</td>
  62.  <td style="background-color:<br />
  63. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  64. blue">CGE.PA</td>
  65.  <td style="background-color:<br />
  66. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  67. blue">Equipements de Télécommunication</td>
  68.  <td style="background-color:<br />
  69. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  70. blue">1428541000</td>
  71. </tr>
  72.  <tr >
  73.  <td style="background-color:<br />
  74. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  75. red">AXA</td>
  76.  <td style="background-color:<br />
  77. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  78. red">CS.PA</td>
  79.  <td style="background-color:<br />
  80. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  81. red">Assurances</td>
  82.  <td style="background-color:<br />
  83. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  84. red">1874054000</td>
  85. </tr>
  86.  <tr >
  87.  <td style="background-color:<br />
  88. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  89. blue">BNP PARIBAS</td>
  90.  <td style="background-color:<br />
  91. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  92. blue">BNP.PA</td>
  93.  <td style="background-color:<br />
  94. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  95. blue">Banque</td>
  96.  <td style="background-color:<br />
  97. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  98. blue">924647000</td>
  99. </tr>
  100.  <tr >
  101.  <td style="background-color:<br />
  102. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  103. red">BOUYGUES</td>
  104.  <td style="background-color:<br />
  105. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  106. red">EN.PA</td>
  107.  <td style="background-color:<br />
  108. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  109. red">Construction</td>
  110.  <td style="background-color:<br />
  111. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  112. red">337927000</td>
  113. </tr>
  114.  <tr >
  115.  <td style="background-color:<br />
  116. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  117. blue">CAP GEMINI</td>
  118.  <td style="background-color:<br />
  119. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  120. blue">CAP.PA</td>
  121.  <td style="background-color:<br />
  122. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  123. blue">Services Informatiques</td>
  124.  <td style="background-color:<br />
  125. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  126. blue">131718000</td>
  127. </tr>
  128.  <tr >
  129.  <td style="background-color:<br />
  130. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  131. red">CARREFOUR</td>
  132.  <td style="background-color:<br />
  133. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  134. red">CA.PA</td>
  135.  <td style="background-color:<br />
  136. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  137. red">Distribution Grand Public</td>
  138.  <td style="background-color:<br />
  139. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  140. red">704902000</td>
  141. </tr>
  142.  <tr >
  143.  <td style="background-color:<br />
  144. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  145. blue">CREDIT AGRICOLE</td>
  146.  <td style="background-color:<br />
  147. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  148. blue">ACA.PA</td>
  149.  <td style="background-color:<br />
  150. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  151. blue">Banque</td>
  152.  <td style="background-color:<br />
  153. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  154. blue">1497322000</td>
  155. </tr>
  156.  <tr >
  157.  <td style="background-color:<br />
  158. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  159. red">DANONE</td>
  160.  <td style="background-color:<br />
  161. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  162. red">BN.PA</td>
  163.  <td style="background-color:<br />
  164. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  165. red">Industrie Alimentaire</td>
  166.  <td style="background-color:<br />
  167. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  168. red">264864000</td>
  169. </tr>
  170.  <tr >
  171.  <td style="background-color:<br />
  172. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  173. blue">DEXIA</td>
  174.  <td style="background-color:<br />
  175. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  176. blue">DX.PA</td>
  177.  <td style="background-color:<br />
  178. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  179. blue">Banque</td>
  180.  <td style="background-color:<br />
  181. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  182. blue">1107469000</td>
  183. </tr>
  184.  <tr >
  185.  <td style="background-color:<br />
  186. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  187. red">EADS</td>
  188.  <td style="background-color:<br />
  189. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  190. red">EAD.PA</td>
  191.  <td style="background-color:<br />
  192. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  193. red">Aérospatiale et Equipements</td>
  194.  <td style="background-color:<br />
  195. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  196. red">821800000</td>
  197. </tr>
  198.  <tr >
  199.  <td style="background-color:<br />
  200. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  201. blue">EDF</td>
  202.  <td style="background-color:<br />
  203. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  204. blue">EDF.PA</td>
  205.  <td style="background-color:<br />
  206. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  207. blue">Services Publics & Collectifs</td>
  208.  <td style="background-color:<br />
  209. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  210. blue">1822171000</td>
  211. </tr>
  212.  <tr >
  213.  <td style="background-color:<br />
  214. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  215. red">ESSILOR INTL</td>
  216.  <td style="background-color:<br />
  217. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  218. red">EF.PA</td>
  219.  <td style="background-color:<br />
  220. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  221. red">Equipements médicaux</td>
  222.  <td style="background-color:<br />
  223. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  224. red">103206000</td>
  225. </tr>
  226.  <tr >
  227.  <td style="background-color:<br />
  228. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  229. blue">FRANCE TELECOM</td>
  230.  <td style="background-color:<br />
  231. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  232. blue">FTE.PA</td>
  233.  <td style="background-color:<br />
  234. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  235. blue">Opérateur de Télécommunications</td>
  236.  <td style="background-color:<br />
  237. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  238. blue">2147483647</td>
  239. </tr>
  240.  <tr >
  241.  <td style="background-color:<br />
  242. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  243. red">GAZ DE FRANCE</td>
  244.  <td style="background-color:<br />
  245. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  246. red">GAZ.PA</td>
  247.  <td style="background-color:<br />
  248. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  249. red">Compagnies Pétrolières</td>
  250.  <td style="background-color:<br />
  251. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  252. red">983871000</td>
  253. </tr>
  254.  <tr >
  255.  <td style="background-color:<br />
  256. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  257. blue">L'OREAL</td>
  258.  <td style="background-color:<br />
  259. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  260. blue">OR.PA</td>
  261.  <td style="background-color:<br />
  262. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  263. blue">Cosmétiques</td>
  264.  <td style="background-color:<br />
  265. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  266. blue">639568000</td>
  267. </tr>
  268.  <tr >
  269.  <td style="background-color:<br />
  270. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  271. red">LAFARGE</td>
  272.  <td style="background-color:<br />
  273. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  274. red">LG.PA</td>
  275.  <td style="background-color:<br />
  276. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  277. red">Transformation des Minéraux</td>
  278.  <td style="background-color:<br />
  279. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  280. red">175985000</td>
  281. </tr>
  282.  <tr >
  283.  <td style="background-color:<br />
  284. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  285. blue">LAGARDERE</td>
  286.  <td style="background-color:<br />
  287. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  288. blue">MMB.PA</td>
  289.  <td style="background-color:<br />
  290. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  291. blue">Diffusion</td>
  292.  <td style="background-color:<br />
  293. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  294. blue">142269000</td>
  295. </tr>
  296.  <tr >
  297.  <td style="background-color:<br />
  298. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  299. red">LVMH</td>
  300.  <td style="background-color:<br />
  301. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  302. red">MC.PA</td>
  303.  <td style="background-color:<br />
  304. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  305. red">Luxe</td>
  306.  <td style="background-color:<br />
  307. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  308. red">489937000</td>
  309. </tr>
  310.  <tr >
  311.  <td style="background-color:<br />
  312. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  313. blue">MICHELIN</td>
  314.  <td style="background-color:<br />
  315. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  316. blue">ML.PA</td>
  317.  <td style="background-color:<br />
  318. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  319. blue">Equipement des Véhicules</td>
  320.  <td style="background-color:<br />
  321. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  322. blue">143387000</td>
  323. </tr>
  324.  <tr >
  325.  <td style="background-color:<br />
  326. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  327. red">PERNOD RICARD</td>
  328.  <td style="background-color:<br />
  329. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  330. red">RI.PA</td>
  331.  <td style="background-color:<br />
  332. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  333. red">Boissons</td>
  334.  <td style="background-color:<br />
  335. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  336. red">93672000</td>
  337. </tr>
  338.  <tr >
  339.  <td style="background-color:<br />
  340. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  341. blue">PEUGEOT</td>
  342.  <td style="background-color:<br />
  343. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  344. blue">UG.PA</td>
  345.  <td style="background-color:<br />
  346. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  347. blue">Automobile</td>
  348.  <td style="background-color:<br />
  349. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  350. blue">234618000</td>
  351. </tr>
  352.  <tr >
  353.  <td style="background-color:<br />
  354. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  355. red">PPR</td>
  356.  <td style="background-color:<br />
  357. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  358. red">PP.PA</td>
  359.  <td style="background-color:<br />
  360. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  361. red">Distribution Grand Public</td>
  362.  <td style="background-color:<br />
  363. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  364. red">120323000</td>
  365. </tr>
  366.  <tr >
  367.  <td style="background-color:<br />
  368. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  369. blue">PUBLICIS GROUPE</td>
  370.  <td style="background-color:<br />
  371. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  372. blue">PUB.PA</td>
  373.  <td style="background-color:<br />
  374. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  375. blue">Services Aux Entreprises</td>
  376.  <td style="background-color:<br />
  377. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  378. blue">197109000</td>
  379. </tr>
  380.  <tr >
  381.  <td style="background-color:<br />
  382. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  383. red">RENAULT</td>
  384.  <td style="background-color:<br />
  385. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  386. red">RNO.PA</td>
  387.  <td style="background-color:<br />
  388. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  389. red">Automobile</td>
  390.  <td style="background-color:<br />
  391. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  392. red">284937000</td>
  393. </tr>
  394.  <tr >
  395.  <td style="background-color:<br />
  396. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  397. blue">SAINT GOBAIN</td>
  398.  <td style="background-color:<br />
  399. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  400. blue">SGO.PA</td>
  401.  <td style="background-color:<br />
  402. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  403. blue">Transformation des Minéraux</td>
  404.  <td style="background-color:<br />
  405. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  406. blue">345256000</td>
  407. </tr>
  408.  <tr >
  409.  <td style="background-color:<br />
  410. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  411. red">SANOFI-AVENTIS</td>
  412.  <td style="background-color:<br />
  413. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  414. red">SAN.PA</td>
  415.  <td style="background-color:<br />
  416. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  417. red">Pharmacie</td>
  418.  <td style="background-color:<br />
  419. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  420. red">1355506000</td>
  421. </tr>
  422.  <tr >
  423.  <td style="background-color:<br />
  424. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  425. blue">SCHNEIDER ELECTRIC</td>
  426.  <td style="background-color:<br />
  427. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  428. blue">SU.PA</td>
  429.  <td style="background-color:<br />
  430. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  431. blue">Equipement des Entreprises</td>
  432.  <td style="background-color:<br />
  433. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  434. blue">226619000</td>
  435. </tr>
  436.  <tr >
  437.  <td style="background-color:<br />
  438. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  439. red">SOCIETE GENERALE</td>
  440.  <td style="background-color:<br />
  441. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  442. red">GLE.PA</td>
  443.  <td style="background-color:<br />
  444. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  445. red">Banque</td>
  446.  <td style="background-color:<br />
  447. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  448. red">433525000</td>
  449. </tr>
  450.  <tr >
  451.  <td style="background-color:<br />
  452. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  453. blue">STMICROELECTRONICS</td>
  454.  <td style="background-color:<br />
  455. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  456. blue">STM.PA</td>
  457.  <td style="background-color:<br />
  458. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  459. blue">Matériel Informatique</td>
  460.  <td style="background-color:<br />
  461. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  462. blue">908340000</td>
  463. </tr>
  464.  <tr >
  465.  <td style="background-color:<br />
  466. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  467. red">SUEZ</td>
  468.  <td style="background-color:<br />
  469. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  470. red">SZE.PA</td>
  471.  <td style="background-color:<br />
  472. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  473. red">Services Publics & Collectifs</td>
  474.  <td style="background-color:<br />
  475. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  476. red">1271214000</td>
  477. </tr>
  478.  <tr >
  479.  <td style="background-color:<br />
  480. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  481. blue">THALES</td>
  482.  <td style="background-color:<br />
  483. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  484. blue">HO.PA</td>
  485.  <td style="background-color:<br />
  486. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  487. blue">Equipement des Entreprises</td>
  488.  <td style="background-color:<br />
  489. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  490. blue">171909000</td>
  491. </tr>
  492.  <tr >
  493.  <td style="background-color:<br />
  494. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  495. red">THOMSON</td>
  496.  <td style="background-color:<br />
  497. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  498. red">TMS.PA</td>
  499.  <td style="background-color:<br />
  500. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  501. red">Equipement Domestique</td>
  502.  <td style="background-color:<br />
  503. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  504. red">273699000</td>
  505. </tr>
  506.  <tr >
  507.  <td style="background-color:<br />
  508. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  509. blue">TOTAL</td>
  510.  <td style="background-color:<br />
  511. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  512. blue">FP.PA</td>
  513.  <td style="background-color:<br />
  514. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  515. blue">Compagnies Pétrolières</td>
  516.  <td style="background-color:<br />
  517. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  518. blue">2147483647</td>
  519. </tr>
  520.  <tr >
  521.  <td style="background-color:<br />
  522. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  523. red">VEOLIA</td>
  524.  <td style="background-color:<br />
  525. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  526. red">VIE.PA</td>
  527.  <td style="background-color:<br />
  528. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  529. red">Services Publics & Collectifs</td>
  530.  <td style="background-color:<br />
  531. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  532. red">407872000</td>
  533. </tr>
  534.  <tr >
  535.  <td style="background-color:<br />
  536. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  537. blue">VINCI</td>
  538.  <td style="background-color:<br />
  539. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  540. blue">DG.PA</td>
  541.  <td style="background-color:<br />
  542. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  543. blue">Construction</td>
  544.  <td style="background-color:<br />
  545. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  546. blue">237382000</td>
  547. </tr>
  548.  <tr >
  549.  <td style="background-color:<br />
  550. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  551. red">VIVENDI</td>
  552.  <td style="background-color:<br />
  553. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  554. red">VIV.PA</td>
  555.  <td style="background-color:<br />
  556. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  557. red">Production et Distribution</td>
  558.  <td style="background-color:<br />
  559. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  560. red">1153477000</td>
  561. </tr>
  562. </table>
  563. </body>
  564. </html>


---------------
[:bossik]
Reply

Marsh Posté le 11-08-2006 à 19:41:51    

Je repost sans cette couleur rouge

Code :
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>Composition CAC 40</title>
  6. </head>
  7. <body>
  8. <table>
  9. <tr>
  10.   <td>Nom</td>
  11.  <td>Ticker</td>
  12.  <td>Secteur</td>
  13.  <td>Nombre dactions</td>
  14.  <td>Cours</td>
  15.  </tr>
  16.  <tr >
  17.  <td style="background-color:<br />
  18. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  19. red">ACCOR</td>
  20.  <td style="background-color:<br />
  21. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  22. red">AC.PA</td>
  23.  <td style="background-color:<br />
  24. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  25. red">Loisirs</td>
  26.  <td style="background-color:<br />
  27. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  28. red">217285000</td>
  29. </tr>
  30.  <tr >
  31.  <td style="background-color:<br />
  32. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  33. blue">AGF</td>
  34.  <td style="background-color:<br />
  35. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  36. blue">AGF.PA</td>
  37.  <td style="background-color:<br />
  38. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  39. blue">Assurances</td>
  40.  <td style="background-color:<br />
  41. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  42. blue">190523000</td>
  43. </tr>
  44.  <tr >
  45.  <td style="background-color:<br />
  46. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  47. red">AIR LIQUIDE</td>
  48.  <td style="background-color:<br />
  49. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  50. red">AI.PA</td>
  51.  <td style="background-color:<br />
  52. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  53. red">Chimie de Base</td>
  54.  <td style="background-color:<br />
  55. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  56. red">120146000</td>
  57. </tr>
  58.  <tr >
  59.  <td style="background-color:<br />
  60. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  61. blue">ALCATEL</td>
  62.  <td style="background-color:<br />
  63. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  64. blue">CGE.PA</td>
  65.  <td style="background-color:<br />
  66. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  67. blue">Equipements de Télécommunication</td>
  68.  <td style="background-color:<br />
  69. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  70. blue">1428541000</td>
  71. </tr>
  72.  <tr >
  73.  <td style="background-color:<br />
  74. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  75. red">AXA</td>
  76.  <td style="background-color:<br />
  77. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  78. red">CS.PA</td>
  79.  <td style="background-color:<br />
  80. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  81. red">Assurances</td>
  82.  <td style="background-color:<br />
  83. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  84. red">1874054000</td>
  85. </tr>
  86.  <tr >
  87.  <td style="background-color:<br />
  88. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  89. blue">BNP PARIBAS</td>
  90.  <td style="background-color:<br />
  91. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  92. blue">BNP.PA</td>
  93.  <td style="background-color:<br />
  94. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  95. blue">Banque</td>
  96.  <td style="background-color:<br />
  97. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  98. blue">924647000</td>
  99. </tr>
  100.  <tr >
  101.  <td style="background-color:<br />
  102. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  103. red">BOUYGUES</td>
  104.  <td style="background-color:<br />
  105. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  106. red">EN.PA</td>
  107.  <td style="background-color:<br />
  108. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  109. red">Construction</td>
  110.  <td style="background-color:<br />
  111. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  112. red">337927000</td>
  113. </tr>
  114.  <tr >
  115.  <td style="background-color:<br />
  116. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  117. blue">CAP GEMINI</td>
  118.  <td style="background-color:<br />
  119. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  120. blue">CAP.PA</td>
  121.  <td style="background-color:<br />
  122. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  123. blue">Services Informatiques</td>
  124.  <td style="background-color:<br />
  125. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  126. blue">131718000</td>
  127. </tr>
  128.  <tr >
  129.  <td style="background-color:<br />
  130. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  131. red">CARREFOUR</td>
  132.  <td style="background-color:<br />
  133. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  134. red">CA.PA</td>
  135.  <td style="background-color:<br />
  136. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  137. red">Distribution Grand Public</td>
  138.  <td style="background-color:<br />
  139. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  140. red">704902000</td>
  141. </tr>
  142.  <tr >
  143.  <td style="background-color:<br />
  144. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  145. blue">CREDIT AGRICOLE</td>
  146.  <td style="background-color:<br />
  147. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  148. blue">ACA.PA</td>
  149.  <td style="background-color:<br />
  150. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  151. blue">Banque</td>
  152.  <td style="background-color:<br />
  153. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  154. blue">1497322000</td>
  155. </tr>
  156.  <tr >
  157.  <td style="background-color:<br />
  158. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  159. red">DANONE</td>
  160.  <td style="background-color:<br />
  161. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  162. red">BN.PA</td>
  163.  <td style="background-color:<br />
  164. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  165. red">Industrie Alimentaire</td>
  166.  <td style="background-color:<br />
  167. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  168. red">264864000</td>
  169. </tr>
  170.  <tr >
  171.  <td style="background-color:<br />
  172. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  173. blue">DEXIA</td>
  174.  <td style="background-color:<br />
  175. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  176. blue">DX.PA</td>
  177.  <td style="background-color:<br />
  178. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  179. blue">Banque</td>
  180.  <td style="background-color:<br />
  181. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  182. blue">1107469000</td>
  183. </tr>
  184.  <tr >
  185.  <td style="background-color:<br />
  186. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  187. red">EADS</td>
  188.  <td style="background-color:<br />
  189. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  190. red">EAD.PA</td>
  191.  <td style="background-color:<br />
  192. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  193. red">Aérospatiale et Equipements</td>
  194.  <td style="background-color:<br />
  195. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  196. red">821800000</td>
  197. </tr>
  198.  <tr >
  199.  <td style="background-color:<br />
  200. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  201. blue">EDF</td>
  202.  <td style="background-color:<br />
  203. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  204. blue">EDF.PA</td>
  205.  <td style="background-color:<br />
  206. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  207. blue">Services Publics & Collectifs</td>
  208.  <td style="background-color:<br />
  209. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  210. blue">1822171000</td>
  211. </tr>
  212.  <tr >
  213.  <td style="background-color:<br />
  214. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  215. red">ESSILOR INTL</td>
  216.  <td style="background-color:<br />
  217. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  218. red">EF.PA</td>
  219.  <td style="background-color:<br />
  220. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  221. red">Equipements médicaux</td>
  222.  <td style="background-color:<br />
  223. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  224. red">103206000</td>
  225. </tr>
  226.  <tr >
  227.  <td style="background-color:<br />
  228. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  229. blue">FRANCE TELECOM</td>
  230.  <td style="background-color:<br />
  231. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  232. blue">FTE.PA</td>
  233.  <td style="background-color:<br />
  234. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  235. blue">Opérateur de Télécommunications</td>
  236.  <td style="background-color:<br />
  237. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  238. blue">2147483647</td>
  239. </tr>
  240.  <tr >
  241.  <td style="background-color:<br />
  242. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  243. red">GAZ DE FRANCE</td>
  244.  <td style="background-color:<br />
  245. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  246. red">GAZ.PA</td>
  247.  <td style="background-color:<br />
  248. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  249. red">Compagnies Pétrolières</td>
  250.  <td style="background-color:<br />
  251. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  252. red">983871000</td>
  253. </tr>
  254.  <tr >
  255.  <td style="background-color:<br />
  256. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  257. blue">L'OREAL</td>
  258.  <td style="background-color:<br />
  259. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  260. blue">OR.PA</td>
  261.  <td style="background-color:<br />
  262. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  263. blue">Cosmétiques</td>
  264.  <td style="background-color:<br />
  265. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  266. blue">639568000</td>
  267. </tr>
  268.  <tr >
  269.  <td style="background-color:<br />
  270. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  271. red">LAFARGE</td>
  272.  <td style="background-color:<br />
  273. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  274. red">LG.PA</td>
  275.  <td style="background-color:<br />
  276. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  277. red">Transformation des Minéraux</td>
  278.  <td style="background-color:<br />
  279. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  280. red">175985000</td>
  281. </tr>
  282.  <tr >
  283.  <td style="background-color:<br />
  284. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  285. blue">LAGARDERE</td>
  286.  <td style="background-color:<br />
  287. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  288. blue">MMB.PA</td>
  289.  <td style="background-color:<br />
  290. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  291. blue">Diffusion</td>
  292.  <td style="background-color:<br />
  293. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  294. blue">142269000</td>
  295. </tr>
  296.  <tr >
  297.  <td style="background-color:<br />
  298. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  299. red">LVMH</td>
  300.  <td style="background-color:<br />
  301. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  302. red">MC.PA</td>
  303.  <td style="background-color:<br />
  304. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  305. red">Luxe</td>
  306.  <td style="background-color:<br />
  307. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  308. red">489937000</td>
  309. </tr>
  310.  <tr >
  311.  <td style="background-color:<br />
  312. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  313. blue">MICHELIN</td>
  314.  <td style="background-color:<br />
  315. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  316. blue">ML.PA</td>
  317.  <td style="background-color:<br />
  318. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  319. blue">Equipement des Véhicules</td>
  320.  <td style="background-color:<br />
  321. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  322. blue">143387000</td>
  323. </tr>
  324.  <tr >
  325.  <td style="background-color:<br />
  326. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  327. red">PERNOD RICARD</td>
  328.  <td style="background-color:<br />
  329. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  330. red">RI.PA</td>
  331.  <td style="background-color:<br />
  332. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  333. red">Boissons</td>
  334.  <td style="background-color:<br />
  335. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  336. red">93672000</td>
  337. </tr>
  338.  <tr >
  339.  <td style="background-color:<br />
  340. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  341. blue">PEUGEOT</td>
  342.  <td style="background-color:<br />
  343. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  344. blue">UG.PA</td>
  345.  <td style="background-color:<br />
  346. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  347. blue">Automobile</td>
  348.  <td style="background-color:<br />
  349. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  350. blue">234618000</td>
  351. </tr>
  352.  <tr >
  353.  <td style="background-color:<br />
  354. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  355. red">PPR</td>
  356.  <td style="background-color:<br />
  357. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  358. red">PP.PA</td>
  359.  <td style="background-color:<br />
  360. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  361. red">Distribution Grand Public</td>
  362.  <td style="background-color:<br />
  363. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  364. red">120323000</td>
  365. </tr>
  366.  <tr >
  367.  <td style="background-color:<br />
  368. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  369. blue">PUBLICIS GROUPE</td>
  370.  <td style="background-color:<br />
  371. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  372. blue">PUB.PA</td>
  373.  <td style="background-color:<br />
  374. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  375. blue">Services Aux Entreprises</td>
  376.  <td style="background-color:<br />
  377. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  378. blue">197109000</td>
  379. </tr>
  380.  <tr >
  381.  <td style="background-color:<br />
  382. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  383. red">RENAULT</td>
  384.  <td style="background-color:<br />
  385. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  386. red">RNO.PA</td>
  387.  <td style="background-color:<br />
  388. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  389. red">Automobile</td>
  390.  <td style="background-color:<br />
  391. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  392. red">284937000</td>
  393. </tr>
  394.  <tr >
  395.  <td style="background-color:<br />
  396. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  397. blue">SAINT GOBAIN</td>
  398.  <td style="background-color:<br />
  399. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  400. blue">SGO.PA</td>
  401.  <td style="background-color:<br />
  402. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  403. blue">Transformation des Minéraux</td>
  404.  <td style="background-color:<br />
  405. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  406. blue">345256000</td>
  407. </tr>
  408.  <tr >
  409.  <td style="background-color:<br />
  410. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  411. red">SANOFI-AVENTIS</td>
  412.  <td style="background-color:<br />
  413. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  414. red">SAN.PA</td>
  415.  <td style="background-color:<br />
  416. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  417. red">Pharmacie</td>
  418.  <td style="background-color:<br />
  419. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  420. red">1355506000</td>
  421. </tr>
  422.  <tr >
  423.  <td style="background-color:<br />
  424. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  425. blue">SCHNEIDER ELECTRIC</td>
  426.  <td style="background-color:<br />
  427. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  428. blue">SU.PA</td>
  429.  <td style="background-color:<br />
  430. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  431. blue">Equipement des Entreprises</td>
  432.  <td style="background-color:<br />
  433. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  434. blue">226619000</td>
  435. </tr>
  436.  <tr >
  437.  <td style="background-color:<br />
  438. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  439. red">SOCIETE GENERALE</td>
  440.  <td style="background-color:<br />
  441. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  442. red">GLE.PA</td>
  443.  <td style="background-color:<br />
  444. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  445. red">Banque</td>
  446.  <td style="background-color:<br />
  447. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  448. red">433525000</td>
  449. </tr>
  450.  <tr >
  451.  <td style="background-color:<br />
  452. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  453. blue">STMICROELECTRONICS</td>
  454.  <td style="background-color:<br />
  455. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  456. blue">STM.PA</td>
  457.  <td style="background-color:<br />
  458. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  459. blue">Matériel Informatique</td>
  460.  <td style="background-color:<br />
  461. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  462. blue">908340000</td>
  463. </tr>
  464.  <tr >
  465.  <td style="background-color:<br />
  466. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  467. red">SUEZ</td>
  468.  <td style="background-color:<br />
  469. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  470. red">SZE.PA</td>
  471.  <td style="background-color:<br />
  472. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  473. red">Services Publics & Collectifs</td>
  474.  <td style="background-color:<br />
  475. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  476. red">1271214000</td>
  477. </tr>
  478.  <tr >
  479.  <td style="background-color:<br />
  480. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  481. blue">THALES</td>
  482.  <td style="background-color:<br />
  483. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  484. blue">HO.PA</td>
  485.  <td style="background-color:<br />
  486. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  487. blue">Equipement des Entreprises</td>
  488.  <td style="background-color:<br />
  489. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  490. blue">171909000</td>
  491. </tr>
  492.  <tr >
  493.  <td style="background-color:<br />
  494. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  495. red">THOMSON</td>
  496.  <td style="background-color:<br />
  497. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  498. red">TMS.PA</td>
  499.  <td style="background-color:<br />
  500. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  501. red">Equipement Domestique</td>
  502.  <td style="background-color:<br />
  503. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  504. red">273699000</td>
  505. </tr>
  506.  <tr >
  507.  <td style="background-color:<br />
  508. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  509. blue">TOTAL</td>
  510.  <td style="background-color:<br />
  511. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  512. blue">FP.PA</td>
  513.  <td style="background-color:<br />
  514. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  515. blue">Compagnies Pétrolières</td>
  516.  <td style="background-color:<br />
  517. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  518. blue">2147483647</td>
  519. </tr>
  520.  <tr >
  521.  <td style="background-color:<br />
  522. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  523. red">VEOLIA</td>
  524.  <td style="background-color:<br />
  525. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  526. red">VIE.PA</td>
  527.  <td style="background-color:<br />
  528. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  529. red">Services Publics & Collectifs</td>
  530.  <td style="background-color:<br />
  531. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  532. red">407872000</td>
  533. </tr>
  534.  <tr >
  535.  <td style="background-color:<br />
  536. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  537. blue">VINCI</td>
  538.  <td style="background-color:<br />
  539. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  540. blue">DG.PA</td>
  541.  <td style="background-color:<br />
  542. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  543. blue">Construction</td>
  544.  <td style="background-color:<br />
  545. <b>Notice</b>:  Use of undefined constant blue - assumed 'blue' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  546. blue">237382000</td>
  547. </tr>
  548.  <tr >
  549.  <td style="background-color:<br />
  550. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>27</b><br />
  551. red">VIVENDI</td>
  552.  <td style="background-color:<br />
  553. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>28</b><br />
  554. red">VIV.PA</td>
  555.  <td style="background-color:<br />
  556. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>29</b><br />
  557. red">Production et Distribution</td>
  558.  <td style="background-color:<br />
  559. <b>Notice</b>:  Use of undefined constant red - assumed 'red' in <b>c:\program files\easyphp1-8\www\mjcom portfolio management\cotations\cac\composition.php</b> on line <b>30</b><br />
  560. red">1153477000</td>
  561. </tr>
  562. </table>
  563. </body>
  564. </html>


---------------
[:bossik]
Reply

Marsh Posté le 11-08-2006 à 19:54:11    

anapajari ne devait pas être reveillé, mais la reponse coule de source putain :/
blue et red ne sont pas des constantes mais doit être des chaines de caracteres donc :  
 

Code :
  1. $odd=0;
  2.     while ($res=mysql_fetch_array($req)){
  3.     $odd++;
  4.     ?>
  5.      <tr>
  6.       <td style="background-color:<?=$odd%2?'red':'blue';?>"><? echo $res['nom'];?></td>
  7.     ...
  8.     </tr>

Reply

Marsh Posté le 12-08-2006 à 09:58:19    

OMFG. Poster 2 fois 600+ lignes de HTML, c'est se foutre de la gueule du monde. :o


---------------
Now Playing: {SYNTAX ERROR AT LINE 1210}
Reply

Marsh Posté le 12-08-2006 à 11:02:36    

t as pas compris

Citation :

Je repost sans cette couleur rouge


moi je veux le code une troisieme fois avec du #666 du #abba00 et du #acdc33 [:god]

Reply

Marsh Posté le 14-08-2006 à 12:15:20    

Citation :

moi je veux le code une troisieme fois avec du #666 du #abba00 et du #acdc33 [:god]


 

Code :
  1. $odd=0;
  2. while ($res=mysql_fetch_array($req))
  3.  {$odd++;
  4.   ?>
  5.  <tr >
  6.  <td style="background-color:<?=$odd%2?'#368EBE':'white';?>"><? echo $res['nom'];?></td>
  7.  <td style="background-color:<?=$odd%2?'#368EBE':'white';?>"><? echo $res['ticker'];?></td>
  8.  <td style="background-color:<?=$odd%2?'#368EBE':'white';?>"><? echo $res['secteur'];?></td>
  9.  <td style="background-color:<?=$odd%2?'#368EBE':'white';?>"><? echo $res['nbaction'];?></td>
  10. </tr>
  11. <? }
  12. ?>


 
Bon ca marche, mais il faut des quotes comme l'a gentillement rappelé Gatsu35.  
Merci a vous les gars et désolé pour les 2 fois 600 lignes de codes. c'était juste pour faire raler sircam.


---------------
[:bossik]
Reply

Marsh Posté le 14-08-2006 à 13:11:05    

Resalut!
 
cette fois-ci j'ai un probleme d'affichage mais sur un autre truc.
J'ai crée un menu (menu.php) puis je veux l'insérer dans ma page avec un include. Le probleme c'est qu'il m'affiche mon menu a gauche comme prévu, mais ma page s'affiche en dessous du menu, alors que je voudrais qu'elle s'affiche juste a coté.
Voici le code de mon menu:

Code :
  1. <style type="text/css">
  2. <!--
  3. a.menu-link { font-family: verdana; font-size: 14Px; color: #2F2F2F;  }
  4. body {
  5. background-color: #FFFFFF;
  6. background-image: url();
  7. ...
  8. -->
  9. </style>
  10. </head>
  11. <body>
  12. <table>
  13. <tr>
  14.  <table width="160" border="2" bordercolor="#3366CC" bgcolor="#000000">
  15.   <tr ><td width="160"style="border: 0px solid;"><img src="images/forex2_1.jpg" /></td></tr>
  16.  </table>
  17.  <table width="160" border="2" bordercolor="#3366CC" bgcolor="#FFFF66">
  18.   <tr bordercolor="#000000">
  19.        <td width="158"  style="border:2px solid;"><div align="center" ><span class="Style8">Cotations</span></div></td>
  20.      </tr>
  21.      <tr border="">
  22.        <td  style="border: 1Px solid #FFCC33; border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over'" onMouseOut="this.className='normal'"><strong>&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript:subMenu('cac_cell')" class="menu-link">CAC 40</a></strong><span id="cac_cell"></span></td>
  23.      </tr>
  24.         ...
  25.  </table>
  26. <table cellspacing="0" style="margin-bottom: 3Px;">
  27.      <tr>
  28.       <td><a title="top" style="color:#000000; font-size: 12px; text-decoration:underline" href="#">Top</a></td>
  29.      </tr>
  30. </table>
  31. </body>


 
et celui de ma page:

Code :
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>Composition CAC 40</title>
  6. </head>
  7. <body>
  8. <? include ("../../connexion.php" ); ?>
  9. <? include ("../../menu.php" ); ?>
  10. <table>
  11. <tr>
  12.   <td align="center">Nom</td>
  13.  <td align="center">Ticker</td>
  14.  <td align="center">Secteur</td>
  15.  <td align="center">Nombre d'actions</td>
  16.  <td align="center" >Cours</td>
  17.  </tr>
  18. <? $req=mysql_query("SELECT*FROM cac ORDER BY nom" );
  19. $odd=0;
  20. while ($res=mysql_fetch_array($req))
  21.  {$odd++;
  22.   ?>
  23.  <tr >
  24.  <td style="background-color:<?=$odd%2?'#368EBE':'white';?>"><? echo $res['nom'];?></td>
  25.  <td style="background-color:<?=$odd%2?'#368EBE':'white';?>"><? echo $res['ticker'];?></td>
  26.  <td style="background-color:<?=$odd%2?'#368EBE':'white';?>"><? echo $res['secteur'];?></td>
  27.  <td align="right"style="background-color:<?=$odd%2?'#368EBE':'white';?>"><? echo $res['nbaction'];?></td>
  28. </tr>
  29. <? }
  30. ?>
  31. </table>
  32. </body>
  33. </html>


 
Merci


---------------
[:bossik]
Reply

Marsh Posté le 14-08-2006 à 13:45:44    

je me demande bien pourquoi ca marche pas tiens :/
pour commencer tu vites les <body> de ton include
sinon il va y etre deux fois  
apres tu refais le tableau de ta page en y laissant une place pour ton menu et tu mets ton menu en include dans la case qui va bien
mais creer une table pour un lien top c est choquant c est tres mal codé tout ca
laisse tomber les dreamweaver et autres et code a la main

Reply

Marsh Posté le 14-08-2006 à 13:52:34    

supprime les balises head et body de ton menu.php

Reply

Marsh Posté le 16-08-2006 à 11:58:15    

bon j'ai tjs un décalage entre mon menu et ma page. Je vous redonne le code
 
Menu.php

Code :
  1. <table>
  2. <tr>
  3.  <table width="160" border="2" bordercolor="#3366CC" bgcolor="#000000">
  4.   <tr ><td width="160"style="border: 0px solid;"><img src="images/forex2_1.jpg" /></td></tr>
  5.  </table>
  6.  <table width="160" border="2" bordercolor="#3366CC" bgcolor="#FFFF66">
  7.   <tr bordercolor="#000000">
  8.        <td width="158"  style="border:2px solid;"><div align="center" ><span class="Style8">Cotations</span></div></td>
  9.      </tr>
  10.      <tr border="">
  11.        <td  style="border: 1Px solid #FFCC33; border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over'" onMouseOut="this.className='normal'"><strong>&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript:subMenu('cac_cell')" class="menu-link">CAC 40</a></strong><span id="cac_cell"></span></td>
  12.      </tr>
  13.         <tr border="0">
  14.        <td style="border: 1Px solid #FFCC33; border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over'" onMouseOut="this.className='normal'"><strong>&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript:subMenu('srd_cell')" class="menu-link">SRD</a></strong><span id="srd_cell"></span>
  15.    </td>
  16.    </tr>
  17.         <tr>
  18.    <td style="border: 1Px solid #FFCC33; border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over'" onMouseOut="this.className='normal'"><strong>&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript:subMenu('nasdaq_cell')" class="menu-link">NASDAQ 1OO</a></strong><span id="nasdaq_cell"></span></td>
  19.      </tr>
  20.   <tr>
  21.    <td style="border: 1Px solid #FFCC33; border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over'" onMouseOut="this.className='normal'"><strong>&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript:subMenu('forex_cell')" class="menu-link">FOREX</a></strong><span id="forex_cell"></span></td>
  22.   </tr>
  23.      <tr>
  24.    <td style="border: 1Px solid #FFCC33; border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over'" onMouseOut="this.className='normal'"><strong>&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript:subMenu('sicfcp_cell')" class="menu-link">SICAV & FCP</a></strong><span id="sicfcp_cell"></span></td>
  25.   </tr>
  26.   <tr>
  27.    <td style="border: 1Px solid #FFCC33; border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over'" onMouseOut="this.className='normal'"><strong>&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript:subMenu('oblig_cell')" class="menu-link">OBLIGATIONS</a></strong><span id="oblig_cell"></span></td>
  28.   </tr>
  29.  </table></tr>
  30. <tr><table width="160" border="2" bordercolor="#3366CC" bgcolor="#FF3300">
  31.     <tr>
  32.       <td style="border:2px solid;" width="148" bordercolor="#000000" class="Style6 Style7"><div align="center">Portfolio Management</div></td>
  33.   </tr>
  34.   <tr>
  35.       <td style="border: 1Px solid #FFCC33; border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over2'" onMouseOut="this.className='normal2'">&nbsp;&nbsp;&nbsp;&nbsp;<a href='create_portfolio.php'class="menu-link"><strong>Cr&eacute;er Portfolio</strong></a></td>
  36.  </tr>
  37.        <tr>
  38.       <td style="border: 1Px solid #FFCC33; border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over2'" onMouseOut="this.className='normal2'">&nbsp;&nbsp;&nbsp;&nbsp;<a href='create_fonds.php'class="menu-link"><strong>Cr&eacute;er Fonds</strong></a></td>
  39.  </tr>
  40.  <tr>
  41.   <td style="border: 1Px solid #FFCC33; border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over2'" onMouseOut="this.className='normal2'">&nbsp;&nbsp;&nbsp;&nbsp;<a href='management.php'class="menu-link"><strong>Afficher</strong></a></td>
  42.     </tr>
  43.  <tr>
  44.   <td style="border: 1Px solid #FFCC33; border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over2'" onMouseOut="this.className='normal2'">&nbsp;&nbsp;&nbsp;&nbsp;<a href='display_por.php'class="menu-link"><strong>Management</strong></a></td>
  45.     </tr>
  46. </table></tr>
  47. <tr>
  48.  <table width="160" border="2" bordercolor="#3366CC" bgcolor="#66FF66">
  49.  <tr>
  50.   <td style="border:2px solid; " bordercolor="#000000" class="Style6 style 7">
  51.    <div align="center">Cours</div></td>
  52.  </tr>
  53.  <tr>
  54.   <td style="border: 1Px solid #FFCC33; border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over3'" onMouseOut="this.className='normal3'">&nbsp;&nbsp;&nbsp;&nbsp;<a href='cours/eco.php'class="menu-link"><strong>Economie</strong></a>
  55.   </td>
  56.  </tr>
  57.  <tr>
  58.   <td style="border: 1Px solid #FFCC33; border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over3'" onMouseOut="this.className='normal3'">&nbsp;&nbsp;&nbsp;&nbsp;<a href='cours/maths.php'class="menu-link"><strong>Mathématiques</strong></a>
  59.   </td>
  60.  </tr>
  61.  <tr>
  62.   <td style="border: 1Px solid #FFCC33; border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over3'" onMouseOut="this.className='normal3'">&nbsp;&nbsp;&nbsp;&nbsp;<a href='cours/finance.php'class="menu-link"><strong>Finance</strong></a>
  63.   </td>
  64.  </tr>
  65.  <tr>
  66.   <td style="border: 1Px solid #FFCC33; border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over3'" onMouseOut="this.className='normal3'">&nbsp;&nbsp;&nbsp;&nbsp;<a href='cours/gestion.php'class="menu-link"><strong>Gestion</strong></a>
  67.   </td>
  68.  </tr>
  69.  <tr>
  70.   <td style=" border-bottom: 0; border-top: 0; border-left:0; border-right:0;" onMouseOver="this.className='over3'" onMouseOut="this.className='normal3'">&nbsp;&nbsp;&nbsp;&nbsp;<a href='cours/info.php'class="menu-link"><strong>Informatique</strong></a>
  71.   </td>
  72.  </tr>
  73.  </table>
  74.  <table width="160"border="2" bordercolor="#3366CC" bgcolor="#CA52D8">
  75.   <tr>
  76.    <td style="border:2px solid; " bordercolor="#000000" class="Style6 style 7">
  77.    <div align="center">Formation-Orientation</div>
  78.    </td>
  79.   </tr>
  80.  </table>
  81.  <table width="160"border="2" bordercolor="#3366CC" bgcolor="#39C4B6">
  82.   <tr>
  83.    <td style="border:2px solid; " bordercolor="#000000" class="Style6 style 7">
  84.    <div align="center">Liens</div>
  85.    </td>
  86.   </tr>
  87.  </table>
  88. </tr>
  89. </table>


et celui de ma page

Code :
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>Composition CAC 40</title>
  6. </head>
  7. <body>
  8. <? include ("../../connexion.php" ); ?>
  9. <table>
  10. <tr><td><? include ("../../menu.php" ); ?></td>
  11. <td>
  12. <table>
  13. <tr>
  14.     
  15.  <td align="center">Nom</td>
  16.  <td align="center">Ticker</td>
  17.  <td align="center">Secteur</td>
  18.  <td align="center">Nombre d'actions</td>
  19.  <td align="center" >Cours</td>
  20.  </tr>
  21. <? $req=mysql_query("SELECT*FROM cac ORDER BY nom" );
  22. $odd=0;
  23. while ($res=mysql_fetch_array($req))
  24.  {$odd++;
  25.   ?>
  26.  <tr >
  27.   
  28.  <td  style="background-color:<?=$odd%2?'#368EBE':'white';?>"><? echo $res['nom'];?></td>
  29.  <td style="background-color:<?=$odd%2?'#368EBE':'white';?>"><? echo $res['ticker'];?></td>
  30.  <td style="background-color:<?=$odd%2?'#368EBE':'white';?>"><? echo $res['secteur'];?></td>
  31.  <td align="right"style="background-color:<?=$odd%2?'#368EBE':'white';?>"><? echo $res['nbaction'];?></td>
  32. </tr>
  33. <? }
  34. ?>
  35. </table>
  36. </td></tr>
  37. </table>
  38. </body>
  39. </html>


Dans mon menu j'ai une fonction javascript. Ets-ce que ca gene???


---------------
[:bossik]
Reply

Marsh Posté le 16-08-2006 à 13:33:58    

Citation :

bon j'ai tjs un décalage entre mon menu et ma page. Je vous redonne le code


 
voila une tres bonne description du probleme dis moi
quand tu regardes bien a la ligne 67 y a ecrit  
<td style="please-make-this-bug-in-my-browser-i-love-it : true;">
pas sur mais le probleme vient de la je pense [:pingouino]

Reply

Marsh Posté le 16-08-2006 à 15:05:47    

Citation :

quand tu regardes bien a la ligne 67 y a ecrit  
<td style="please-make-this-bug-in-my-browser-i-love-it : true;">  
pas sur mais le probleme vient de la je pense [:pingouino]


J'ai enlevé tous les styles dans mes td et ca marche tjs pas!!! :fou:


---------------
[:bossik]
Reply

Marsh Posté le 16-08-2006 à 15:41:30    

mjcom a écrit :

Merci a vous les gars et désolé pour les 2 fois 600 lignes de codes. c'était juste pour faire raler sircam.


Boulet, va.


---------------
Now Playing: {SYNTAX ERROR AT LINE 1210}
Reply

Marsh Posté le 16-08-2006 à 16:00:23    

mjcom a écrit :

Citation :

quand tu regardes bien a la ligne 67 y a ecrit  
<td style="please-make-this-bug-in-my-browser-i-love-it : true;">  
pas sur mais le probleme vient de la je pense [:pingouino]


J'ai enlevé tous les styles dans mes td et ca marche tjs pas!!! :fou:


 
lol

Reply

Marsh Posté le 16-08-2006 à 16:41:13    

au lieu de rigloler, tu peux pas m'aider mIRROR???


---------------
[:bossik]
Reply

Marsh Posté le 16-08-2006 à 17:51:28    

peux pas m empecher de rire
sur 4 phrases t as décidé de supprimer la seule interressante [:pingouino]
un decalage ca veut rien dire
decris mieux ton probleme
et le fin du fin ca serait un lien

Reply

Marsh Posté le    

Reply

Sujets relatifs:

Leave a Replay

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