0byt3m1n1
Path:
/
home
/
kassiope
/
www
/
lib
/
class
/
multipage
/
[
Home
]
File: test.php
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Fichier de test de la classe Multipage</title> </head> <body> <?php // Fichier de test de la classe multipage include('multipage.class.php'); $Links = new MultiPage(); $Links-> ResultPerPage = 10; $Links-> LinkPerPage = 4; $Links-> Template = "tpl1.htm"; $Links-> SqlRequest = "SELECT domaine, description FROM domaines ORDER BY domaine"; $Links-> Initialize(); $out = ""; // Configurez votre accès à la base ici $db_name = 'phpclass'; $db_user = 'root'; $db_pass = ''; $db_host = 'localhost'; mysql_connect($db_host, $db_user, $db_pass); mysql_select_db($db_name); $rst = mysql_query_override($Links-> LimitSQL); while ($row = mysql_fetch_array_override($rst)) { $out .= "<tr><td>" . $row[0] . ' </td><td>' . $row[1] . '</td></tr>'; } ?> <table border="1" cellspacing="5" cellpadding="0"> <tr> <td><strong>Domaine</strong></td> <td><strong>Description</strong></td> </tr> <?php print $out; ?> </table> <hr size=1 color=black> <?php $Links-> pMultipage(); ?> </body> </html>