> For the complete documentation index, see [llms.txt](https://xoops.gitbook.io/xoops-modules-cookbook/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xoops.gitbook.io/xoops-modules-cookbook/form-classes/forms/xoopssimpleform.md).

# XoopsSimpleForm

**Definition**

```php
XoopsSimpleForm( string $title, string $name, string $action, string $method = "post" )
```

**Usage** Inherits from XoopsForm and will render the form with no tables and minimal formatting.

**Full Example:**

```php
include XOOPS_ROOT_PATH."/class/xoopsformloader.php";
$form = new XoopsSimpleForm('Title of form', 'formname', 'targetpage.php', 'POST');
$form->addElement(new XoopsFormText('Field Label:', 'fieldname'));
$form->display();
```

![](/files/-MPw6tC9WLSo87nWXaxv)
