Подскажите п-та в чём ошибка записи? Браузер не видит первую форму, видит только input, а со второй всё норм.
<td class="center">
<?php echo "<p class='status'>".$this->escape($item->credit)."</p>";
if ($this->escape($item->credit) != "отказано" && $this->escape($item->credit) != "")
{ ?>
<form class="credit_action" action="?" method="post">
<input type="hidden" value="отказано" name="action" />
<input type="hidden" value="<?php echo $this->escape($item->name); ?>" name="user" />
<input class="cancel" name="update" type="submit" value="отказать" />
</form>
<?php ;}
if ($this->escape($item->credit) != "одобрено" && $this->escape($item->credit) != "")
{ ?>
<form class="credit_action" action="?" method="post">
<input type="hidden" value="одобрено" name="action" />
<input type="hidden" value="<?php echo $this->escape($item->name); ?>" name="user" />
<input class="approve" name="update" type="submit" value="одобрить" />
</form>
<?php ;}
if ($this->escape($item->credit) != "")
{ ?>