Code
<?php
$HF->client->login($id,array($username,$age));
?>
HighFive Framework is a
modular library of essentials tools.
It's
Expandable easily and by anyone, even you!
For example there is the getIp() function in the client class:
Code
<? echo 'Your IP is: ' . $HF->client->getIp(); ?>
Result
Your IP is: 10.2.66.200
Any other class works in the same thing. There are some very powerful classes like CRUD where you can set an entire Admin table with 1 line!
Code
<?php
$HF->crud->setTable("users")
->add()
->edit()
->remove()
->ajaxify()
->generate();
?>
This simple line divided in multiple rows to be read better generate an entire and async Admin table where the user can add,edit and remove stuff from and to it!
You can find the last bleeding version on
| GitHub |
Thanks and support with your knowledge!