Ein kleines Problem!!!

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

  • Ein kleines Problem!!!

    Hallo,
    also ich gebe eine Variable Weiter das sieht so aus:
    Code:
    [url]http://localhost/webworker/admin/artikel/artikel_bearbeiten.php?id=10[/url]
    Wenn ich aber jetzt den Quelltext vom Formular anschaue dann steht da nicht 10 sondern 1:
    Code:
    <html>
    <head>
    </head>
    <body bgcolor="#99ccff">
    <form method=post action="artikel.php?id=1">
    <table>
    <td valign=top>
    Beschreibung:
    </td>
    <td>
    <textarea name="text" cols=35 rows=8>Und das ist wieder einmal ein test!!!!</textarea>
    <input type="hidden" name="action" value="update">
    <input type="submit" value="Link Ändern">
    </td>
    </tr>
    </table>
    </form>
    <center><a href="../index.php">zurück</a></center>
    </body>
    </html>
    Das bearbeiten klappt mit allen ID Nummern unter 10. Was kann man da machen oder was mache ich Falsch?
    Mfg
    BenBay

  • #2
    wie sieht denn der php-code aus, der das erzeugt?
    INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


    Kommentar


    • #3
      wie erzeugts du denn das
      action="artikel.php?id=1">
      ?
      Ich denke, also bin ich. - Einige sind trotzdem...

      Kommentar


      • #4
        Oh, Sorry!!! Leichtsinnsfehler!!
        Code Vorher:
        Code:
        <html>
        <head>
        </head>
        <body bgcolor="#99ccff">
        <form method=post action="artikel.php?id=<? echo $id['id'] ?>">
        <table>
        <td valign=top>
        Beschreibung:
        </td>
        <td>
        <textarea name="text" cols=35 rows=8><? echo $link['text'] ?></textarea>
        <input type="hidden" name="action" value="update">
        <input type="submit" value="Link Ändern">
        </td>
        </tr>
        </table>
        </form>
        <center><a href="../index.php">zurück</a></center>
        </body>
        </html>
        Code Nachher:
        Code:
        <html>
        <head>
        </head>
        <body bgcolor="#99ccff">
        <form method=post action="artikel.php?id=<? echo $id ?>">
        <table>
        <td valign=top>
        Beschreibung:
        </td>
        <td>
        <textarea name="text" cols=35 rows=8><? echo $link['text'] ?></textarea>
        <input type="hidden" name="action" value="update">
        <input type="submit" value="Link Ändern">
        </td>
        </tr>
        </table>
        </form>
        <center><a href="../index.php">zurück</a></center>
        </body>
        </html>
        Also, nochmals entschuldigung das ich Euch belästigt habe!!!
        Mfg
        BenBay

        Kommentar


        • #5
          was soll das denn sein?

          PHP-Code:
          <? echo $id['id'] ?>
          mache mal

          PHP-Code:
          <?php echo $_GET["id"]; ?>
          oder

          PHP-Code:
          <?php echo $HTTP_GET_VARS["id"]; ?>
          INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


          Kommentar


          • #6
            Wieso? Geht doch auch so wie ich es gemacht habe. Oder Wie?
            Das war ja eh Falsch:
            Code:
            <? echo $id['id'] ?>
            Denn so wars richtig:
            Code:
            <? echo $id ?>
            Zuletzt geändert von BenBay; 09.04.2003, 21:52.
            Mfg
            BenBay

            Kommentar


            • #7
              das erkläre mir, was hier drin steht: $id['id']
              INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


              Kommentar


              • #8
                Siehe eins oben! Bin halt noch Anfänger!!!!
                Mfg
                BenBay

                Kommentar


                • #9
                  und hast du jetzt auch schon mal die anderen ausprobiert????
                  INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


                  Kommentar


                  • #10
                    Jetzt geht alles!!! Neuen Artikel erstellen, bearbeiten, erweitern und löschen!!!
                    Mfg
                    BenBay

                    Kommentar


                    • #11
                      warum nicht gleich so?
                      INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


                      Kommentar


                      • #12
                        Tja, weil ich eben noch Anfänger bin und ich jeden Tag etwas neues dazu lerne in PHP!!!!
                        Danke für Eure Hilfe!!!
                        Mfg
                        BenBay

                        Kommentar


                        • #13
                          und deshalb poste ich schon und testest das nicht mal!!! das meinte ich.

                          aber jetzt geht.
                          INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


                          Kommentar


                          • #14
                            Ja, ich weiß. War mal wieder zu voreilig. Wird nicht mehr vorkommen!!!
                            Mfg
                            BenBay

                            Kommentar


                            • #15
                              soll dir nur eine lehre sein....

                              immer erst die vorschläge testen, bevor du fragst...
                              INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


                              Kommentar

                              Lädt...
                              X