[Typo3] cookies

christian oettinger christian.oettinger at gmx.de
Tue May 10 20:16:01 CEST 2005


I don't know if I get you right, but I hope I do:

Your question is not really regarding typo3. If you want to send 
something with a form you have to put it inside a form field in HTML. 
Later you can read it out with the HTTP_GET_VARS in php or in typo3 
t3lib_div::_GET()
(see 
http://typo3.org/documentation/document-library/doc_core_cgl/Variables_and_Consta/)
Maybe in your case it is automatically read out and sent.

If you want to have something submitted just use a (hidden) input field 
like this:

<HTML>
...
<?php

$yourcontent = 'Cookies are accepted';

?>
...
<FORM ...>
<input type="hidden" name="whateveryoulike" value="'.$yourcontent.'">
</FORM>

</HTML>


hope this helps!

greetings from munich


oe (christian)



More information about the TYPO3-english mailing list