Fatal error: Uncaught ArgumentCountError: Too few arguments to function

In php 7 instead of:

    public function register($name, $surname, $username, $password, $email)
{
...

use:

public function register($name = null, $surname = null, $username = null, $password = null, $email = null)
{
...

Leave a Comment