Comment on page
0081: Too many actual parameters
The command is given more parameters than it expects.
For example, the
Inc
command accepts either one or two parameters and supplying three would raise an error. Possible solutions: check the related documentation and provide fewer parameters:
Sqr($var, 1) // error
Sqr($var) // OK
Last modified 3yr ago