When i use the $_GET function i get this error Fatal error: Call to undefined function: array()
I am using it like this, $Submit = $_GET($Submit);
any idea why?
Square Brackets for arrays. And you probably didn't want to use $submit as the name.
$Submit = $_GET['Submit'];
that would explain it 🙂 thanks!😃