diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2010-10-17 13:29:57 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2010-10-17 13:29:57 +0000 |
commit | 232aa1924c8c0f10d87b210b46c9f061af5c844c (patch) | |
tree | 2351f2aaff7ad244f60358954e4711692fb8aadc /h-source/Examples/Views/post2/form.php | |
parent | a17e3e0495bee3705d3c1e5ead2db1a8359e64e9 (diff) |
added files
Diffstat (limited to 'h-source/Examples/Views/post2/form.php')
-rwxr-xr-x | h-source/Examples/Views/post2/form.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/h-source/Examples/Views/post2/form.php b/h-source/Examples/Views/post2/form.php new file mode 100755 index 0000000..5ef5aff --- /dev/null +++ b/h-source/Examples/Views/post2/form.php @@ -0,0 +1,28 @@ +<div class='mainMenu'> + <?php echo $topMenu;?> +</div> + +<?php echo $notice; ?> + +<div> + <form action='<?php echo $action;?>' method='POST'> + <table> + <tr> + <td>Titolo:</td> + <td><input type='text' name='titolo' value='<?php echo $values['titolo'];?>'></td> + </tr> + <tr> + <td>Autore:</td> + <td><input type='text' name='autore' value='<?php echo $values['autore'];?>'></td> + </tr> + <tr> + <td>Titolo:</td> + <td><textarea name='testo'><?php echo $values['testo'];?></textarea></td> + </tr> + <?php echo $hidden;?> + <tr> + <td><input type='submit' name='<?php echo $submit;?>' value='salva'></td> + </tr> + </table> + </form> +</div> |