An open API service indexing awesome lists of open source software.

https://github.com/znframework/package-hypertext

ZN Framework Hypertext Package
https://github.com/znframework/package-hypertext

Last synced: 6 months ago
JSON representation

ZN Framework Hypertext Package

Awesome Lists containing this project

README

        










ZN Framework Hypertext Package



Follow the steps below for installation and use.

Installation



You only need to run the following code for the installation.

```
composer require znframework/package-hypertext
```

Documentation



Click for documentation of your library.

Example Usage



Basic level usage is shown below.

```php
process('update')->open('users');
echo Form::postback()->validate('required', 'xss')->text('name');
echo Form::postback()->validate('email', 'required')->text('email');
echo Form::select('gender', [1 => 'Male', 2 => 'Female']);
echo Form::validate('required')->textarea('about');
echo Form::submit('submit', 'Submit');
echo Form::close();
echo Form::validateErrorMessage();
```