formulaire + PHP

formulaire + PHP - PHP - Programmation

Marsh Posté le 14-05-2003 à 22:55:11    

tjr moi et mes probleme.
 
comment puis-je lors du click sur le bouton envoyer de mon formulaire:
-incrementer une variable php et la stocker
-recuperer les données d'un champ et les stocké ds un fichier.
 

Reply

Marsh Posté le 14-05-2003 à 22:55:11   

Reply

Marsh Posté le 14-05-2003 à 23:00:45    

tu te fais une 'tite fonction js monvalid(); en onclick de ton button, dans laquelle tu incrementes ta variable PHP que tu postes avec un <input type="hidden"> et tu submit ton form

Reply

Marsh Posté le 15-05-2003 à 12:48:09    

escuse
mais le comprend pas trop.

Reply

Marsh Posté le 15-05-2003 à 12:59:12    

en fait c'est encore plus simple que ca :
 

Code :
  1. // $count est ta variable aincrementer
  2. echo "<form name=\"monform\" action=\"mapage.php\">";
  3. echo "<input type="hidden" name=\"compteur\" value=$count+1>";
  4. echo "</form>";


 
 
voilà pour le compteur, tu ajoutes ton champ pour passer la variable que tu veux stocker dans un fichier.  [:spamafote]  
 
et pour la partie stockage (dans le fichier)
renseignes toi sur les fonction fopen(); et fwrite();
http://dev.nexen.net/docs/php/anno [...] .fopen.php
 

Reply

Marsh Posté le 15-05-2003 à 17:36:07    

dc il faut que j'afficvhe le formulaire avec des echo???
 
et si je veux afficher un tableau contenan des images? c'est pareil?
 echo "<TD>.........</TD> " ?????

Reply

Marsh Posté le 15-05-2003 à 20:18:35    

tellier a écrit :

dc il faut que j'afficvhe le formulaire avec des echo???
 
et si je veux afficher un tableau contenan des images? c'est pareil?
 echo "<TD>.........</TD> " ?????


 
perso je fait

Code :
  1. <table>
  2.   <tr>
  3.     <td>
  4.       <img src"">blabla
  5.       count = <?=$count?>
  6.     </td>
  7.    </tr>
  8. </table>

Reply

Marsh Posté le 15-05-2003 à 20:41:51    

oui mais je voudrai afficher un tablo ds une boucle
 
et a chauqe passage le tablo est different
 
par exemple une boucle avec 5 passage dc j'orai 5 tablo ki s'affiche consequitivemen mai des tablo different.

Reply

Marsh Posté le 15-05-2003 à 20:52:40    

tellier a écrit :

oui mais je voudrai afficher un tablo ds une boucle
 
et a chauqe passage le tablo est different
 
par exemple une boucle avec 5 passage dc j'orai 5 tablo ki s'affiche consequitivemen mai des tablo different.


 
bah ouais et ou est le pb ?

Reply

Marsh Posté le 15-05-2003 à 21:02:22    

je capte pas ton code
 
jorai une boucle
 
et ds la boucle afficher un tablo (toujours les meme images de fond dedans) mais avec du texte qui change en fonction du compteur de la boucle

Reply

Marsh Posté le 16-05-2003 à 21:23:58    

et voui
je demande encore de l'aide pr afficher un tablo ds une boucle.
 
help svp
 
merci

Reply

Marsh Posté le 16-05-2003 à 21:23:58   

Reply

Marsh Posté le 16-05-2003 à 22:05:16    

up

Reply

Marsh Posté le 16-05-2003 à 22:18:55    

je voudrai afficher ce tablo:
 

Code :
  1. <table cellSpacing="0" cellPadding="6" width="475" align="center" border="0" height="105">
  2.   <tbody>
  3.     <tr>
  4.       <td width="475" background="images/haut.gif" height="23">
  5.         <table height="10" cellSpacing="0" cellPadding="0" width="100%" border="0">
  6.           <tbody>
  7.             <tr>
  8.               <td align="right" width="36%"></td>
  9.               <td width="30%"> </td>
  10.               <td width="34%"></td>
  11.             </tr>
  12.           </tbody>
  13.         </table>
  14.        
  15.       </td>
  16.     </tr>
  17.     <tr>
  18.       <td width="475" background="images/milieu.gif" height="79">
  19.         </td>
  20.     </tr>
  21.     <tr>
  22.       <td width="475" background="images/bas.gif" height="1"> <p align="center"> </p></td>
  23.     </tr>
  24.   </tbody>
  25. </table>


 
dans une boucle for


Message édité par tellier le 16-05-2003 à 22:19:14
Reply

Marsh Posté le 16-05-2003 à 22:21:14    

bon je t'aide .. mais rapide
tu veux afficher le tablo plusieurs fois ou uniquement les lignes (plusiiuers fois )?

Reply

Marsh Posté le 16-05-2003 à 22:26:14    

je veu afficher le tablo 5 fois
 
a chaque foi lun en dessous de lautre.
bien sur le texte de chaque tablo change .

Reply

Marsh Posté le 16-05-2003 à 22:28:30    

tellier a écrit :

je voudrai afficher ce tablo:
 


 
 

Code :
  1. <?php
  2. for($i=0; $i<5; $i++) {
  3. ?>
  4. <table cellSpacing="0" cellPadding="6" width="475" align="center" border="0" height="105">
  5.   <tbody>
  6.     <tr>
  7.       <td width="475" background="images/haut.gif" height="23">
  8.         <table height="10" cellSpacing="0" cellPadding="0" width="100%" border="0">
  9.           <tbody>
  10.             <tr>
  11.               <td align="right" width="36%"></td>
  12.               <td width="30%"> </td>
  13.               <td width="34%"></td>
  14.             </tr>
  15.           </tbody>
  16.         </table>
  17.        
  18.       </td>
  19.     </tr>
  20.     <tr>
  21.       <td width="475" background="images/milieu.gif" height="79">
  22.         </td>
  23.     </tr>
  24.     <tr>
  25.       <td width="475" background="images/bas.gif" height="1"> <p align="center"> </p></td>
  26.     </tr>
  27.   </tbody>
  28. </table>
  29. <?php
  30. }
  31. ?>


 
voilà, ca va t'afficher le tableau 5 fois  [:spamafote]  
et si tu veux juste afficher les lignes, ben tu deplaces le "for"


Message édité par simogeo le 16-05-2003 à 22:32:51
Reply

Marsh Posté le 16-05-2003 à 22:30:29    

je capte pas
 
elle est ou la boucle la???
 
et puis faut que j'ai l'entete des fichier html pr ca non?

Reply

Marsh Posté le 16-05-2003 à 22:33:23    

sorry j'ai fais un edit et j'ai bouffer le code
 now c bon   :whistle:

Reply

Marsh Posté le 16-05-2003 à 22:39:01    

bizzard
jai aucune erreur mais il se pass rien

Reply

Marsh Posté le 16-05-2003 à 22:42:18    

t'as mis les balises html et body ?  :heink:

Reply

Marsh Posté le 16-05-2003 à 22:43:03    

oui
mai rien du tout:
 

Code :
  1. <html>
  2. <head>
  3. <title>Document sans titre</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  5. </head>
  6. <body>
  7. <?php
  8.  
  9.   for($i=0; $i<5; $i++) {
  10.    
  11.     ?>
  12.    
  13.     <table cellSpacing="0" cellPadding="6" width="475" align="center" border="0" height="105">
  14.       <tbody>
  15.         <tr> 
  16.           <td width="475" background="images/haut.gif" height="23"> 
  17.             <table height="10" cellSpacing="0" cellPadding="0" width="100%" border="0">
  18.               <tbody>
  19.                 <tr> 
  20.                   <td align="right" width="36%"></td>
  21.                   <td width="30%"> </td>
  22.                   <td width="34%"></td>
  23.                 </tr>
  24.               </tbody>
  25.             </table>
  26.            
  27.           </td>
  28.         </tr>
  29.         <tr> 
  30.           <td width="475" background="images/milieu.gif" height="79">
  31.             </td>
  32.         </tr>
  33.         <tr> 
  34.           <td width="475" background="images/bas.gif" height="1"> <p align="center"> </p></td>
  35.         </tr>
  36.       </tbody>
  37.     </table>
  38.    
  39.     <?php
  40.   }
  41.   ?>
  42. </body>
  43. </html>


Message édité par tellier le 16-05-2003 à 22:44:19
Reply

Marsh Posté le 16-05-2003 à 22:48:24    

:heink:  remplis- le ca marchera mieux [:tinostar]


Message édité par simogeo le 16-05-2003 à 22:48:46
Reply

Marsh Posté le 16-05-2003 à 22:50:57    

oui mais normalemen ca devrai mafficher le tablo avec les image non?
 
edit: a oui aparemen ca marche mais ca afficeh pas les les image
ca doit etre un bug avec easy php.


Message édité par tellier le 16-05-2003 à 22:53:35
Reply

Marsh Posté le 16-05-2003 à 22:58:33    

tellier a écrit :


edit: a oui aparemen ca marche mais ca afficeh pas les les image
ca doit etre un bug avec easy php.


 
c'est pas plutôt un bug avec tellier  :whistle: ?

Reply

Marsh Posté le 16-05-2003 à 23:08:01    

peut etre lol

Reply

Marsh Posté le 16-05-2003 à 23:11:40    

aller derniere chose et apres jte fou la paix
 
y a une fonction pr lire l'integralité d'un fichier et stocker son contenu ds un fichier pr pouvoir le reafficher plus tard avec la meme mise en page?

Reply

Marsh Posté le 16-05-2003 à 23:19:21    


pour afficher un fichier dans son integralité
 

Code :
  1. <?php
  2. $pt=fopen("fichier.txt", "r" );
  3. $contenu=fpassthru($pt);
  4. echo $contenu;
  5. fclose($pt);
  6. ?>


 
je te laisse chercher un peu pour le stockage  :)

Reply

Marsh Posté le 16-05-2003 à 23:24:26    

ctte fonction li tt un fichier meme si y a des retour chario dedans?

Reply

Marsh Posté le 16-05-2003 à 23:32:17    

oui, je crois, essayes, a vrai dire je ne m'en sers pas  [:spamafote]

Reply

Marsh Posté le 16-05-2003 à 23:35:05    

je viens de jeter un oeil sur la doc
file est peut-etre plus approprié  
http://dev.nexen.net/docs/php/anno [...] n.file.php

Reply

Marsh Posté le    

Reply

Sujets relatifs:

Leave a Replay

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