PHP im Value

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • PHP im Value

    irgend wie habe ich Tomaten auf den Augen.... es ist doch zum k....en:


    PHP-Code:

    <html>
    <meta http-equiv="content-type" content="text/html;charset=utf-8">

    <body>
    <form action="anfrage.php" method="post">
        <?php
        error_reporting
    (E_ALL);

        
    /* ´Berechnung */
        
    $preis $plattenl_1 $plattent_1 0.5 ;
        echo 
    "$preis";
        
    ?>

    <td width="100"><input type="hidden" name="plattenl_1" value="<?php echo $_POST['plattenl_1']; ?>" /></td>
    <td width="100"><input type="hidden" name="plattent_1" value="<?php echo $_POST['plattent_1']; ?>" /></td>
    <td width="100"><input type="hidden" name="preis"      value="<?php echo $_POST['preis']; ?>" /></td>
    <table >
            <tr>
            <td width="93">Vorname:</td>
            <td width="100"><input type="text" name="vorname" size="24" /></td>
            </tr>
            <tr>
            <td width="93">Nachname:</td>
            <td width="100"><input type="text" name="name" size="24" /></td>
            </tr>

    <table border="0" cellspacing="0" cellpadding="0">
                            <tr>
                                <td align="left" valign="top" width="20"></td>
                                <td align="left" valign="top" width="150"><input style="width: 100px" type="reset"  value="L&ouml;schen"></td>
                                <td align="left" valign="top" width="20"></td>
                                <td align="left" valign="top" width="150"><input style="width: 150px" type="submit" value="Bestellung versenden"></td>
                            </tr>
                </table>
                <p></p>
            </form>


    </body>
    </html>
    und ich bekomme sowas angezeigt.....

    Notice: Undefined index: preis in ........\\mailer_test\\ausgabe_1.php on line 16

    hiiiilfeeeee ich kann nicht mehr.......

  • #2
    Hi,

    Die Fehlermeldung sagt es doch, der Index Preis ist nicht bekannt...

    Gruß Thomas

    Kommentar


    • #3
      Ja schon- aber der "$preis" wird doch einpaar zeilen höher berechnet ???

      PHP-Code:
      /* ´Berechnung */
          
      $preis $plattenl_1 $plattent_1 0.5 ;
          echo 
      "$preis";
          
      ?> 
      grrrrrr

      Kommentar


      • #4
        Die Variable Preis interessiert doch garnicht, sondern nur der Index Preis.

        Kommentar


        • #5
          was meinst Du genauer ?

          Kommentar


          • #6
            Wie es mir scheint, weißt du garnicht, was du geschrieben hast...

            PHP-Code:
            $preis     // Variable
            $_POST['preis']     // Array mit Index preis 

            Kommentar


            • #7
              bin nun mal Anfänger - du hast auch sicherlich "klein" angefangen..


              Aber wie kann ich nun die Variable $preis mit hidden an meien Mailer übergeben?

              Gruß Dino

              Kommentar


              • #8
                Du könntest anstatt dem unbekannten Array Index deine Variable dort ausgeben...

                Kommentar


                • #9
                  Sauberer
                  PHP-Code:
                  <?php
                  error_reporting
                  (E_ALL);
                  $preis $_POST['plattenl_1'] * $_POST['plattent_1'] * 0.5 ;
                  echo 
                  $preis;
                  ?>

                  <td width="100"><input type="hidden" name="plattenl_1" value="<?php echo $_POST['plattenl_1']; ?>" /></td>
                  <td width="100"><input type="hidden" name="plattent_1" value="<?php echo $_POST['plattent_1']; ?>" /></td>
                  <td width="100"><input type="hidden" name="preis"      value="<?php echo $preis?>" /></td>
                  Gruss

                  tobi
                  Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

                  [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
                  Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

                  Kommentar


                  • #10
                    Danke......

                    Kommentar

                    Lädt...
                    X