info:myphp:pear

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
info:myphp:pear [2026/03/05 09:57] – supprimée - modification externe (Date inconnue) 127.0.0.1info:myphp:pear [2026/03/05 09:57] (Version actuelle) radeff
Ligne 1: Ligne 1:
 +======  PHP PEAR ======
 +[[http://pear.php.net/|PEAR - PHP Extension and Application Repository]]
 +
 +===== Installer pear (sous linux) =====
 +http://php.developpez.com/cours/pear/installation/
 +<code>
 +synaptic 
 +php-pear
 +
 +ou
 +apt-get install php-pear php5-cli
 +</code>
 +
 +
 +
 +
 +
 +
 +
 +
 +===== Tutoriels =====
 +
 +[[http://php.developpez.com/cours/pear/html-quickform/|Créez vos formulaires facilement avec le package HTML_quickform de PEAR]]
 +
 +Pour faire vite
 +<code>
 +sudo su
 +pear install HTML_Common HTML_QuickForm
 +</code>
 +
 +Voici le [[..:html_quickform_exemple|code complet]]
 +
 +Si on veut installer le résultat sur un serveur web qui a pas pear, le plus simple est un petit wget:
 +<code>
 +wget http://localhost/HTML_quickform/test.php
 +scp test.php yourlogin@serveur:/path/
 +</code>
 +
 +===== XML avec pear =====
 +pear install XML_Query2XML XML_XPath 
 +
 +
 +