erreur php
Dernière réponse : dans Programmation
voici le code de ma page internet:
dans mon tableu il y a une erreur que je ne sais pas comment corriger. si vous pourrier maider. avec ma session quand elle est ouverte
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd</a>"> <html xmlns="<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>" xml:lang="en" lang="en"><head> <title>Pure CSS Scrollable Table with Fixed Header</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <meta http-equiv="language" content="en-us" /> <script type="text/javascript"> <!-- /* <a href="http://www.alistapart.com/articles/zebratables/" target="_blank">http://www.alistapart.com/articles/zebratables/</a> */ function removeClassName (elem, className) { elem.className = elem.className.replace(className, "").trim(); } function addCSSClass (elem, className) { removeClassName (elem, className); elem.className = (elem.className + " " + className).trim(); } String.prototype.trim = function() { return this.replace( /^\s+|\s+$/, "" ); } function stripedTable() { if (document.getElementById && document.getElementsByTagName) { var allTables = document.getElementsByTagName('table'); if (!allTables) { return; } for (var i = 0; i < allTables.length; i++) { if (allTables[i].className.match(/[\w\s ]*scrollTable[\w\s ]*/)) { var trs = allTables[i].getElementsByTagName("tr"); for (var j = 0; j < trs.length; j++) { removeClassName(trs[j], 'alternateRow'); addCSSClass(trs[j], 'normalRow'); } for (var k = 0; k < trs.length; k += 2) { removeClassName(trs[k], 'normalRow'); addCSSClass(trs[k], 'alternateRow'); } } } } } window.onload = function() { stripedTable(); } --> </script> <style type="text/css"> /* define height and width of scrollable area. Add 16px to width for scrollbar */ div.tableContainer { clear: both; border: 1px solid #963; height: 285px; overflow: auto; width: 756px } /* Reset overflow value to hidden for all non-IE browsers. */ html>body div.tableContainer { overflow: hidden; width: 756px } /* define width of table. IE browsers only */ div.tableContainer table { float: left; width: 740px } /* define width of table. Add 16px to width for scrollbar. */ /* All other non-IE browsers. */ html>body div.tableContainer table { width: 350px } /* set table header to a fixed position. WinIE 6.x only */ /* In WinIE 6.x, any element with a position property set to relative and is a child of */ /* an element that has an overflow property set, the relative value translates into fixed. */ /* Ex: parent element DIV with a class of tableContainer has an overflow property set to auto */ thead.fixedHeader tr { position: relative } /* set THEAD element to have block level attributes. All other non-IE browsers */ /* this enables overflow to work on TBODY element. All other non-IE, non-Mozilla browsers */ html>body thead.fixedHeader tr { display: block } /* make the TH elements pretty */ thead.fixedHeader th { background: blue; border-left: 1px solid red; border-right: 1px solid red; border-top: 1px solid red; font-weight: normal; padding: 4px 3px; text-align: left } /* define the table content to be scrollable */ /* set TBODY element to have block level attributes. All other non-IE browsers */ /* this enables overflow to work on TBODY element. All other non-IE, non-Mozilla browsers */ /* induced side effect is that child TDs no longer accept width: auto */ html>body tbody.scrollContent { display: block; height: 262px; overflow: auto; width: 100% } /* make TD elements pretty. Provide alternating classes for striping the table */ /* <a href="http://www.alistapart.com/articles/zebratables/" target="_blank">http://www.alistapart.com/articles/zebratables/</a> */ tbody.scrollContent td, tbody.scrollContent tr.normalRow td { background: black; border-bottom: none; border-left: none; border-right: 1px solid #CCC; border-top: 1px solid #DDD; padding: 2px 3px 3px 4px } tbody.scrollContent tr.alternateRow td { background: black; border-bottom: none; border-left: none; border-right: 1px solid #CCC; border-top: 1px solid #DDD; padding: 2px 3px 3px 4px } /* define width of TH elements: 1st, 2nd, and 3rd respectively. */ /* Add 16px to last TH for scrollbar padding. All other non-IE browsers. */ /* <a href="http://www.w3.org/TR/REC-CSS2/selector.html#adjacent-selectors" target="_blank">http://www.w3.org/TR/REC-CSS2/selector.html#adjacent-se...</a> */ html>body thead.fixedHeader th { width: 200px } html>body thead.fixedHeader th + th { width: 240px } html>body thead.fixedHeader th + th + th { width: 316px } /* define width of TD elements: 1st, 2nd, and 3rd respectively. */ /* All other non-IE browsers. */ /* <a href="http://www.w3.org/TR/REC-CSS2/selector.html#adjacent-selectors" target="_blank">http://www.w3.org/TR/REC-CSS2/selector.html#adjacent-se...</a> */ html>body tbody.scrollContent td { width: 200px } html>body tbody.scrollContent td + td { width: 240px } html>body tbody.scrollContent td + td + td { width: 300px } --> </style> <link href="css/style.css" rel="stylesheet" type="text/css" /> </head><body> <div id="tableContainer" class="tableContainer"> <table border="0" cellpadding="0" cellspacing="0" width="100%" class="scrollTable"> <thead class="fixedHeader"> <tr> <th><center>Votre compte</center></th> </tr> </thead> <tbody class="scrollContent"> <tr> <td> <?php session_start(); include('user_verif.php'); user_verif("1", "user_login.php?action=login"); ?> <p align="center"> <font face="Arial" size="2"> Vous êtes connecté sous: <a href="mailto: <?php user('email'); ?>"><?php user('pseudo'); ?></a> en tant que <b><?php user('rang'); ?></b> <br> <br> Il y a <?php stats('nb', '123'); ?> membres sur le site. <br> </font> <?php ?> <font face="Arial" size="2"> En voici la liste: <br> <br> <?php stats('ls', '123'); ?> </font> <br> <?php ?> <font face="Arial" size="2"> Il y a <?php stats('nb', '3'); ?> administrateurs et <?php stats('nb', '2'); ?> modérateurs sur le site. <br> <br> Les <b>administrateurs</b>: <br> <font color="red"> <?php stats('ls', '3'); ?> </font> <br> <br> Les <b>modérateurs</b>: <br> <font color="blue"> <?php stats('ls', '2'); ?> <br> <br> <?php $html='<a href="admin/index.php">Administration</a>'; affiche($html, '3'); ?><br> <?php $html='<a href="user_login.php?action=logout" target="_blank">Déconnexion</a>'; affiche($html, '123'); ?><br> <?php $html='<a href="user_update.php?action=modif">Editer votre profil</a>'; affiche($html, '123'); ?> </font> </font> </td> </tr> </tbody> </table> </div> </body></html>
dans mon tableu il y a une erreur que je ne sais pas comment corriger. si vous pourrier maider. avec ma session quand elle est ouverte
Autres pages sur : erreur php
Lassé par la pub ? Créez un compte
Voici le message dereur que sa me donne:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /www/sites/1/ifrance.com/b/e/bedjbedard/site/mainframe.php:132) in /www/sites/1/ifrance.com/b/e/bedjbedard/site/mainframe.php on line 176
Lassé par la pub ? Créez un compte
- Contenus similaires :
- SolutionsProblème affichage site erreur php
- SolutionsErreur requête php
- ForumPHP utilisation librairie GD ... l'image contien des erreur !!
- ForumErreur execution script PHP
- Forum[Resolu] [php] erreur de syntaxe
- Forumphp: erreur Navigateur ou autre ? connexion réinitialisée sur un exit
- Forum[Resolu] [PHP] Page d'erreur personnalisée
- ForumErreur en php : , unexpected T_STRING, expecting ',' or ';'
- ForumErreur de syntaxe sur ma page d'index en PHP [résolu]
- Voir plus
pour avoir lu