Sur un serveur php, le résultat fonctionne très bien.
Chez moi sur un serveur en php5, on ne voit toujours pas le d_important en couleur. (1)
J'ai essayé beaucoup de combinaisons :
Sur mon serveur php5 :
En changeant le Doctype 1.0 strict pour Doctype transitional et en codant :
Je vois les jours importants ( http://ppzx.net/calendrier_test.php5 ) (toujours la même CSS pour tous ces essais : css.css)
Même codage, mais avec Doctype strict, pas de jours importants ( http://ppzx.net/calendrier_test2.php5 ).
Avec ( http://ppzx.net/ )
Pas de jours importants visibles. Pas de problème de la même csss !
Quand je le passe au W3C
J'aurais bien besoin de vos lumières ! pierreandre
les codages php et CSS :http://ppzx.net/calendrier.txt
Modifié par pierreandre (21 Feb 2009 - 16:15)
Chez moi sur un serveur en php5, on ne voit toujours pas le d_important en couleur. (1)
J'ai essayé beaucoup de combinaisons :
Sur mon serveur php5 :
En changeant le Doctype 1.0 strict pour Doctype transitional et en codant :
if(isset($coloreNum) && $coloreNum == $i) echo 'd_jour">';
else if(in_array($i . "_" . $numero_mois . "_" . $annee, $d_important)) echo 'd_important">';
Je vois les jours importants ( http://ppzx.net/calendrier_test.php5 ) (toujours la même CSS pour tous ces essais : css.css)
Même codage, mais avec Doctype strict, pas de jours importants ( http://ppzx.net/calendrier_test2.php5 ).
Avec ( http://ppzx.net/ )
if(isset($coloreNum) && $coloreNum == $i) echo 'd_jour">';
else if(in_array($i . "_" . $numero_mois . "_" . $annee, $d_important)) echo 'td" bgcolor="#EE3300">';
Pas de jours importants visibles. Pas de problème de la même csss !
Quand je le passe au W3C
Line 72, Column 548: there is no attribute "bgcolor".
s="td">23</td><td class="td" bgcolor="#EE3300">24</td><td class="td">25</td><
You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.
How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.
J'aurais bien besoin de vos lumières ! pierreandre
les codages php et CSS :http://ppzx.net/calendrier.txt
Modifié par pierreandre (21 Feb 2009 - 16:15)