0

TYPO3 で拡張機能を作成しました。フロントエンドに HTML フォームが必要です。textarea次のように、HTML テンプレートにフィールドを作成しました。

<textarea rows="10" cols="50" id=""></textarea>

しかし問題は、この同じコードが<textarea rows="10" cols="50" id=""></textarea>フロント エンド ページに直接表示されていることです。

どうすればこれを解決できますか?? 残りのすべての Html パーツは正しく表示されています。

私のコードは次のとおりです: -

     $markerArray['###OPTION_USERS###'].='<form action="'.$this->username().'" id="messageform" name="messageform" method="post">';
     $markerArray['###OPTION_USERS###'].='<textarea rows="10" cols="50" id=""></textarea><select id="selectedusers" name="selectedusers[]" size="" multiple="multiple">';

             while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)){
                    $markerArray['###OPTION_USERS###'].='<option value="'.$row['username'].'">'.$row['username'].'</option>';
             }
     $markerArray['###OPTION_USERS###'].='</select><input type="submit" name="sendmessage" value="send message"></form>';
4

0 に答える 0