problem with getParameter
Posted by: tania (---.upnet.gr)
Date: February 25, 2006 11:24PM

i use this function forget the paremeter of a checkbox whether is checked or not but Fatal error: Call to undefined function getParameter()....

what can i do???
thanks in advanced!!!!

Options: ReplyQuote
Re: problem with getParameter
Posted by: RealNubSlayer (---.hsd1.ma.comcast.net)
Date: February 26, 2006 12:00AM

getParameter is not a deafaultly set function in php, see [us2.php.net] There are very many variations.. If you defined it with function getParameter(){ then you could have errors in your code. And in addition i reviewed your problem again and again and the error is saying that you are calling a non-existing function.. i reccommend that if you are trying to see if a box is checked use POST or GET methods, and something like
if($_POST['checkbox']){ script ;}
I didn't find any particular built in function that would fit your problem ,so i would suggest making one in your script...

Options: ReplyQuote


Sorry, only registered users may post in this forum.