1. Go to this page and download the library: Download milesq/nyxt library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
milesq / nyxt example snippets
ework = new \Nyxt\Base;
$framework->run();
class Handler extends \Nyxt\Controller {
public function handle() {
// There you can handle request
echo 'URL is: /';
}
}
class Handler extends \Nyxt\Controller {
public function handle() {
// You can declare template arguments like:
$this->by_property = "hello";
$this->reset();
$this
->setByMethod("hello")
->setChainMethod("world")
->unset('chainMethod');
$this->render('index', ['by_arg' => 1]);
}
}
class Bike extends \Nyxt\Model {
var array $__columns = ['position', 'docked']; # these columns will be used in select and create methods
public function docked() {
return $this->findByDocked(true);
}
}
#[nyxt('orm')]
class Handler extends \Nyxt\Controller {
function handle() {
$this->bikes->docked()->where('id', '>', 3)->get();
}
}
$framework = new \Nyxt\Base(function() {
return new PDO("mysql:host=localhost;dbname=test", "username", "pass");
});