Please @suyonob follow the neoPhp database video tutorial to better understand how to use it:
https://www.youtube.com/watch?v=jIAN5B2dSl0&list=PL0I-4WLYvbmg0uBSo6jabSg034o8_lbfx
In your config.php file you have decided only a logged-in admin can execute the queries:
$sqlMaxUserLevel[0]=0;
If you want to execute the queries without using a username and a password you should indicate it this way:
$sqlMaxUserLevel[0]=-1;
You can find more information in the config.php template file comments.
Regards
Please @suyonob follow the neoPhp database video tutorial to better understand how to use it:
In your config.php file you have decided only a logged-in admin can execute the queries:
$sqlMaxUserLevel[0]=0;
If you want to execute the queries without using a username and a password you should indicate it this way:
$sqlMaxUserLevel[0]=-1;
You can find more information in the config.php template file comments.