im getting this error on my website member control
"Warning: Missing argument 1 for dataGrid::render(), called in /home/hotonlin/public_html/memberarea.php on line 92 and defined in /home/hotonlin/public_html/class.datagrid.php on line 636
Notice: Undefined variable: returnOutput in /home/hotonlin/public_html/class.datagrid.php on line 1104" I enclosed my php file and it in a txt file thank you to all how help
Your problem is in your memberarea.php . Just like what the error states, On line 92 in memberarea you are calling the function render() without sending a variable along with it. except in your class, render is defined with a variable being sent to it. So php is telling you, you are missing an argument.
thank you!! , I don't really understand how to fix it I no really no php im good at vb6 but clueless on php.
Originally Posted by zalez
Your problem is in your memberarea.php . Just like what the error states, On line 92 in memberarea you are calling the function render() without sending a variable along with it. except in your class, render is defined with a variable being sent to it. So php is telling you, you are missing an argument.