PHP Befehl per Button oder Link

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

  • PHP Befehl per Button oder Link

    Hi,
    Ich wollte mal fragen ob es ein Script gibt für php wo man per Knopf druck eine Variable verändern kann ( Knopf oder Link ist egal)
    Damit ich z.B:
    Jemanden der ein Kapital von 500 hat per Knopfdruck die Variable um 10 senken kann!

    Danke für Antwort
    Taylantz

  • #2
    Code:
    <form action="<?php echo $_SERVER['PHP_SELF'];?>" method="post">
    <input type="submit" name="plus" value="10" /><br />
    <input type="submit" name="minus" value="100" />
    </form>
    PHP-Code:
    if(isset($_POST['plus'])){
        return(
    $deine_var $_POST['plus']);
    }elseif(isset(
    $_POST['minus'])){
        return(
    $deine_var $_POST['minus']);

    So was in der Art haste dir selbst schneller selbst gezimmert

    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


    • #3
      Gibts das auch für Online-Banking?

      Kommentar


      • #4
        Gibts das auch für Online-Banking?
        OffTopic:

        Gib mir deine Kontonummer, die nächsten 20 Pins, dein PW und die Bank wo dein Konto ist. Dann werde ich dir sofort eine angepasste Version schreiben und dir ne Karte von den Grand Caymans beilegen


        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


        • #5
          Original geschrieben von jahlives
          Dann werde ich dir sofort eine angepasste Version schreiben und dir ne Karte von den Grand Caymans beilegen
          Mit Tobis Kontoinhalt kommste doch höchstens bis kurz hinter Wanne-Eickel ...
          I don't believe in rebirth. Actually, I never did in my whole lives.

          Kommentar


          • #6
            Mit Tobis Kontoinhalt kommste doch höchstens bis kurz hinter Wanne-Eickel ...
            Soll auch schön sein dort
            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


            • #7
              @jahlives

              Danke hat mir sehr weiter geholfen!

              Kommentar

              Lädt...
              X