1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
   |  
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <title>Example XHTML document</title>
  </head>
  <body>
    <p align="center">Example of Xhtml, static page</p>
    <br clear="none" />
    <br clear="none" />
    <br clear="none" />
    <div align="center">
      Juste avant Tool
      <Tool Output="PHP">
        <Connection id="C1">
          <Setup>
            <Driver>org.gjt.mm.mysql.Driver</Driver>
            <LocationURL>jdbc:mysql://127.0.0.1</LocationURL>
            <Dbname>test</Dbname>
            <User>root</User>
            <Password>aaaaaaaa</Password>
          </Setup>
          <Resultset>
            <Sql>select * from teachers</Sql>
            <Display>
              <table width="75%" border="1">
                <Loop>
                  <tr>
                    <td rowspan="1" colspan="1">
                      <Field id="F1">name</Field>
                    </td>
                    <td rowspan="1" colspan="1">
                      <Field id="F2">salary</Field>
                    </td>
                  </tr>
                </Loop>
              </table>
            </Display>
          </Resultset>
        </Connection>
      </Tool>
      Nous revoila apres tool
    </div>
    <p align="center">Â </p>
    <p>Â </p>
  </body>
</html> |