Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 1.08 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2. session_start();
  3. ?>
  4.  
  5. <?php
  6. /*
  7.    LICENCE
  8.  
  9.     Copyright 2010 (Marius Hrabal)
  10. */
  11.  
  12. /*      PLEASE DO NOT EDIT THE FOLLOWING UNLESS YOU HAVE KNOWLEDGE OF PHP CODING        */
  13.  
  14.         /* Grab Calculator Functions */
  15.         require_once("calc_functions.php");
  16.         require_once("calc_settings.php");
  17.  
  18. ?>
  19.  
  20.  
  21. <?php
  22. if (isset($_POST['anfordern'])) {
  23.  
  24.         if($_POST['Arten'] == 'kreditkarte'){
  25.         echo 'KREDITKARTEN FORMULAR';
  26.         }
  27.  
  28.         if($_POST['Arten'] == 'bankeinzug'){
  29.         echo 'BANKEINZUGS FORMULAR';
  30.         }
  31.        
  32.         if($_POST['Arten'] == 'ueberweisung'){
  33.         echo 'ÜBERWEISUNGS FORMULAR';
  34.         echo '<form action="dank.php" method="post">
  35.  
  36. <table border="0" width="500">
  37.         <tr>
  38.                 <td align="right" valign="top"><b></b></td>
  39.                 <td valign="top" align="left"><label for="qf_de2785"> Kontonummer: 123456 <br/> Bankleitzahl: 98765000 <br/> Name: CO2-Kompensation </label></td>
  40.         </tr>
  41.         <tr>
  42.                 <td align="right" valign="top"><b></b></td>
  43.                 <td valign="top" align="left"><br />
  44.                 <input type="Submit" name="aktion" value="Ich werde das Geld überweisen." />
  45.                 <br />
  46.                 </td>
  47.         </tr>
  48.  
  49. </table>
  50. </form>';
  51.        
  52.         }
  53. }
  54. ?>