ďťż
Podstrony
|
telcocafeczy na serwerze 1000gp jest zainstalowany pakiet IT biblioteki PEAR? jeśli nie to czy mozna go jakoś doinstalować? jeśli jest to jak go zaincludować?PEAR jest domyślnie instalowany w PHP > 3 (czyli od wersji 4). Na OVH mają php 4 i 5 więc PEAR jest. O jego użyciu poszukaj na google oraz http://pear.php.net no daję require 'HTML/Template/IT.php'; potem tworzę szablon i skrypt php wypełniający go danymi z bazy danych, jednak w przeglądarce nic sie nie pokazuje oto kody: <? require 'php/config.php'; require 'php/db.inc.php'; require 'HTML/Template/IT.php'; $tpl = new HTML_Template_IT('templates'); $tpl -> loadTemplateFile('test.tpl', true, true); $sql = 'SELECT * FROM users'; $result = DB::setQuery($result); while ($row = DB::recordTable($result)) { echo $row['user_email']; $tpl -> setCurrentBlock('USER'); $tpl -> setVariable('login', $row['user_login']); $tpl -> setVariable('email', $row['user_email']); $tpl -> parseCurrentBlock(); } $tpl -> show(); ?> <!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"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" /> <title>Untitled Document</title> </head> <body> <!-- BEGIN USER --> {login} {email}<br /> <!-- END USER --> </body> </html> |
|||
Sitedesign by AltusUmbrae. |