Ecosyste.ms: Awesome
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: 9 days ago
JSON representation
ZN Framework Hypertext Package
- Host: GitHub
- URL: https://github.com/znframework/package-hypertext
- Owner: znframework
- License: mit
- Created: 2018-01-19T12:24:14.000Z (about 7 years ago)
- Default Branch: develop
- Last Pushed: 2025-01-05T14:11:23.000Z (19 days ago)
- Last Synced: 2025-01-05T14:38:28.217Z (19 days ago)
- Language: PHP
- Size: 188 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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();
```