Die TYPO3 Mailingliste - nicht fragen: lesen!
This is a discussion on [TYPO3] POST and GET in backend extension within the typo3-english@lists.netfielders.de forums, part of the TYPO3-Mailinglists: ENGLISH category; Hi list Could someone please help me understand how to handle POST and GET in backend extension programming? Perhaps by ...
|
|||||||
| Registrieren | Hilfe | Benutzerliste | Kalender | Suchen | Heutige Beiträge | Alle Foren als gelesen markieren |
|
#1
|
|||
|
|||
|
Hi list
Could someone please help me understand how to handle POST and GET in backend extension programming? Perhaps by correcting this example: index.php: <form action="sendmail.html" method="post"> <input type="hidden" name="username" value="myusername" /> <input type="submit" value="send" /> </form> sendmail.html: <td>Username: <?php echo $_GET["username"]; ?></td> Cheers, Lasse _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
|
#2
|
|||
|
|||
|
Lasse Guldsborg schrieb:
> Hi list > > Could someone please help me understand how to handle POST and GET in > backend extension programming? > Perhaps by correcting this example: > > index.php: > <form action="sendmail.html" method="post"> > <input type="hidden" name="username" value="myusername" /> > <input type="submit" value="send" /> > </form> > > sendmail.html: > <td>Username: <?php echo $_GET["username"]; ?></td> > Just have a look at the default-code of the kickstarter. (no table-handling) it contains a form and a usage of the form-values. * no imidiate usage of $_GET and $_POST (use t3lib_div::GPVar($varname) * no usage of global formfieldnames (use prefixId-arrays) * no usage of echo (all output in TYPO3 is done in stringvar $content, or any other wich is return from main-function, which can be operated by following methods) Bernd -- http://www.pi-phi.de/t3v4/cheatsheet.html _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
|
#3
|
|||
|
|||
|
Thanks Bernd! =)
Best regards, Lasse "Bernd Wilke" <xoonsji02 (AT) sneakemail (DOT) com> skrev i en meddelelse news:mailman.1.1197546680.28471.typo3-english (AT) lists (DOT) netfielders.de... > Lasse Guldsborg schrieb: >> Hi list >> >> Could someone please help me understand how to handle POST and GET in >> backend extension programming? >> Perhaps by correcting this example: >> >> index.php: >> <form action="sendmail.html" method="post"> >> <input type="hidden" name="username" value="myusername" /> >> <input type="submit" value="send" /> >> </form> >> >> sendmail.html: >> <td>Username: <?php echo $_GET["username"]; ?></td> >> > > Just have a look at the default-code of the kickstarter. (no > table-handling) > > it contains a form and a usage of the form-values. > > * no imidiate usage of $_GET and $_POST (use t3lib_div::GPVar($varname) > * no usage of global formfieldnames (use prefixId-arrays) > * no usage of echo (all output in TYPO3 is done in stringvar $content, or > any other wich is return from main-function, which can be operated by > following methods) > > Bernd > -- > http://www.pi-phi.de/t3v4/cheatsheet.html _______________________________________________ TYPO3-english mailing list TYPO3-english (AT) lists (DOT) netfielders.de http://lists.netfielders.de/cgi-bin/.../typo3-english |
| Themen-Optionen | Thema durchsuchen |
| Ansicht | Thema bewerten |
|
|
|
||||
| Thema | Autor | Forum | Antworten | Letzter Beitrag |
| [TYPO3-german] Eigene Extension Backend Listing Frage | Matthias Kappenberg | typo3-german@lists.netfielders.de | 0 | 04.11.2007 16:05 |
| [TYPO3] Editing a backend extension: why is my function undefined? | Lasse Guldsborg | typo3-english@lists.netfielders.de | 0 | 25.10.2007 16:50 |
| [TYPO3-german] Zugriff auf $conf in Backend-Extension | Christian Clemens | typo3-german@lists.netfielders.de | 0 | 14.05.2007 07:44 |
| [TYPO3-german] Zugriff auf $conf in Backend-Extension | Thomas Janke | typo3-german@lists.netfielders.de | 5 | 31.01.2007 18:43 |
| [TYPO3] Backend: How to change the way an extension orders records | Brian Bendtsen | typo3-english@lists.netfielders.de | 4 | 05.12.2006 13:22 |