mirror of
https://github.com/Relintai/mourne_rcpp_fw.git
synced 2024-11-13 05:57:21 +01:00
21 lines
343 B
PHP
Executable File
21 lines
343 B
PHP
Executable File
<?php
|
|
$attr_form = array(
|
|
'class' => 'form_addnews');
|
|
|
|
$attr_text = array(
|
|
'name' => 'text');
|
|
|
|
$attr_submit = array(
|
|
'name' => 'submit',
|
|
'value' => 'Submit');
|
|
|
|
?>
|
|
|
|
news add lawl!
|
|
<?=validation_errors(); ?>
|
|
<?=form_open('/news/add', $attr_form); ?>
|
|
<?=form_textarea($attr_text); ?>
|
|
<?=form_submit($attr_submit); ?>
|
|
<?=form_close(); ?>
|
|
|