Esempio n. 1
0
 /**
  * Start an HTML form with the given token.
  * @param string $tokenPrefix Security token prefix to associate with the form.
  */
 public function start($tokenPrefix)
 {
     echo '<form method="post">';
     piaForm::addFormTokens($tokenPrefix);
     $this->tokenPrefix = $tokenPrefix;
 }