I installed a script on a site and when I upload an image, I get the following error below:
Warning: Missing argument 6 for Item::createItem(), called in /home/babytoob/public_html/bellybuttoncontest.com/savesubmit.php on line 43 and defined in /home/babytoob/public_html/bellybuttoncontest.com/classes/item.php on line 138
Warning: Missing argument 7 for Item::createItem(), called in /home/babytoob/public_html/bellybuttoncontest.com/savesubmit.php on line 43 and defined in /home/babytoob/public_html/bellybuttoncontest.com/classes/item.php on line 138
Warning: Missing argument 8 for Item::createItem(), called in /home/babytoob/public_html/bellybuttoncontest.com/savesubmit.php on line 43 and defined in /home/babytoob/public_html/bellybuttoncontest.com/classes/item.php on line 138
Can anyone help me? I am about stupid to php stuff
Knowing what lines 43 and 138 were would help , plus some other relevant code.
__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS
Your createItem() method is expecting 8 arguments and you are passing 5. If you post the source for the createItem() method someone can probably help you figure out what the other arguments should be or show you how to make them optional, but what you already posted isn't very informative.