generer du pdf à la volée avec ezpdf...

generer du pdf à la volée avec ezpdf... - PHP - Programmation

Marsh Posté le 15-05-2006 à 15:10:54    

voilà , j 'ai mon script de panier avec deux fichiers php: 1) pour choisir son article le  2) qu iaffiche la liste des articles choisit, je voudrais faire un script qui permettent de transformer la liste en pdf, j'ai bien inclus la bibliothèque ezpdf, mais je vois plus trop comment génerer le pdf ...  
 
script 1

Code :
  1. <?
  2. session_start();
  3. ?> <html>
  4. <head>
  5.    <title> formulaire choix </title>
  6. </head>
  7. <body>
  8.    <h1> Bienvenue chez celuikiatoo </h1>
  9.    <p> faites votre choix </p>
  10.    <form method="POST" action="ex6_suite.php<?SID?>">
  11.      <select name="choix">
  12.        <option value="un chien"> un chien </option>
  13.        <option value="un lapin"> un lapin </option>
  14.        <option value="un dinausore"> un dinausore </option>
  15.        <option value="une ferrari"> une ferrari </option>
  16.        <option value="un zorglub"> un zorglub </option>
  17.        <option value="un marsupilami"> un marsupilami </option>
  18.      </select>
  19.      <input type="submit">
  20.    </form>
  21. </body>
  22. </html>


 
 
script2

Code :
  1. <?
  2. session_start();
  3. if(!isset($_SESSION"tab" )){
  4.   $_SESSION"tab"=$_POST"choix";
  5. }else{
  6.   $_SESSION"tab" = $_SESSION"tab".";".$_POST"choix";
  7. };
  8. $tableau = explode(';',$_SESSION"tab" );
  9. ?> <html>
  10. <head>
  11.    <title> liste des articles </title>
  12. </head>
  13. <body>
  14.    <h1> Liste des articles choisis </h1>
  15.    <p> Vous avez choisi : </p>
  16.    <ul>
  17.      <?
  18.        for($i=0;$i<count($tableau);$i++){
  19.          echo "<li> $tableau$i </li>";
  20.        }
  21.      ?>
  22.    </ul>
  23.    <p> <a href="ex6.php<?SID?>"> Ajouter un élément au panier </a></p>
  24. <p> <a href="commandepdf.php<?SID?>"> pdf </a></p
  25. </body>
  26. </html>


 
script 3 pour generer le pdf ???

Reply

Marsh Posté le 15-05-2006 à 15:10:54   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed