parser

Написать ответ на текущее сообщение

 

 
   команды управления поиском

а у него действительно нету body

egr 22.08.2002 12:46

надо так:
^if(def $request:query){
<form action="ms.html" method="post">
<input type="text" value="Имя" name="name">:::
<input type="text" value="Мыло" name="mail"><br>
<input type="text" value="Кому" name="toname">:::
<input type="text" value="Кому мыло" name="tomail"><br>
<input type="text" value="Тема" name="subj"><br>
<textarea rows=15 cols=60 wrap="off" name="text">Текст письма</textarea>
<input type="submit" value="Send">
</form>
}{
^mail:send[
      $.from[$form:name <$form:mail>]
      $.to[$form:toname <$form:tomail>]
      $.subject[$form:subj]
      $.text[$form:text]
]
}