[Typo3] $_POST['MyVar'] doesn't work!!

Patrick Rodacker rod at biba.uni-bremen.de
Tue Dec 6 18:37:00 CET 2005


Hi bamba,

bamba thiam wrote on 06.12.2005 17:52:

> i want to use $_POST['MyVar'] in a file of an extension.
> The syntax is right But i can't get the content of the $_POST['MyVar'].
> does typo3 have an other why to get the content of $POST['MyVar']?


you could either use $this->piVars['MyVar'] [1] which stores POST and
GET data or you can use t3lib_div::_GP('MyVar'),
t3lib_div::_GET('MyVar') and t3lib_div::_POST('MyVar') [2] to access the
submitted data directly.

Regards
Patrick

[1]
http://wiki.typo3.org/index.php/Extension_Development%2C_using_POST_Forms$GLOBALS['TSFE']

[2]
http://typo3.org/documentation/document-library/doc_core_cgl/Variables_and_Consta-1/#oodoc_part_260



More information about the TYPO3-english mailing list