phpDocumentor PHP_Debug
[ class tree: PHP_Debug ] [ index: PHP_Debug ] [ all elements ]

Source for file debug_test_min_xhtml.php

Documentation is available at debug_test_min_xhtml.php

  1. <?php
  2. /**
  3.  * Mini Tutorial
  4.  * 
  5.  * @package PHP_Debug
  6.  * @filesource
  7.  */ 
  8.  
  9. print('<?xml version="1.0" encoding="UTF-8"?>');
  10.  
  11. ?>
  12.  
  13. <!DOCTYPE html 
  14.      PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  15.      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  16. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">     
  17.   <head>  
  18.     <title>PHP_Debug :: Hello World !!</title>
  19.     <style type="text/css">
  20.     body {
  21.         background-color:#FFFFFF;
  22.         padding:1px;
  23.         margin:1px;
  24.     }
  25.     img {
  26.         border-width:0 0 0 0;
  27.     }    
  28.   
  29. <?php
  30. /**
  31.  * Include Debug Class
  32.  */ 
  33. include_once('Debug.php');
  34.  
  35.  
  36. $Dbg new Debug();
  37.  
  38. /**
  39.  * Generate StyleSheet
  40.  */
  41. require_once 'Debug.php';
  42. require_once 'Debug/Renderer/HTML_Table_Config.php';
  43.  
  44. $htmlOptions Debug_Renderer_HTML_Table_Config::singleton()->getConfig();
  45.  
  46. // Get PHP_Debug stylesheet and print it
  47. print($htmlOptions['HTML_TABLE_stylesheet'])
  48.  
  49. ?>
  50.     </style>
  51.   </head>
  52.   <body>
  53.   <div>
  54.     <a href="http://validator.w3.org/check/referer">
  55.        <img src="/05 - PHP_Debug/images/vxhtml10.png" alt="Valid XHTML 1.0!" height="31" width="88" />
  56.     </a>     
  57.   </div>
  58.   
  59. <?php
  60.  
  61. print("<div><h1>PHP_Debug :: Hello World !!</h1></div>");
  62. print("<div><h2>This page is XHTML 1.0 strict compliant.</h2></div>");
  63.  
  64. $Dbg->add('DEBUG INFO');
  65.  
  66. $Dbg->display();
  67.  
  68. ?>
  69.  
  70.   </body>
  71. </html>

Documentation generated on Thu, 07 Sep 2006 00:36:23 +0200 by phpDocumentor 1.3.0