Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

18 lignes
526B

  1. <?PHP
  2. foreach ($valami as $id=>$v) { //foreach eleje asszociativ tomb kulcs ertek kulonszedve
  3. ?>
  4. <!-- foreachben html komment, mert ez mar html -->
  5. <h1><?PHP echo $v." php kod"; ?> - ez meg megint html</h1>
  6. <?PHP
  7. } //foreach vege, mar megint php kod
  8. foreach ($valami as $v) { //foreach eleje csak tomb ertek, kulcs elveszik
  9. ?>
  10. <!-- foreachben html komment, mert ez mar html -->
  11. <h1><?PHP echo $v." php kod"; ?> - ez meg megint html</h1>
  12. <?PHP
  13. } //foreach vege, mar megint php kod
  14. ?>