blommes Posted March 14, 2007 Share Posted March 14, 2007 How do I fix this please? :'( Fatal error: Call to undefined function: insertmenu() in \\nas32ent\domains\b\bizzielizziebarn.com\user\htdocs\feedback02.php on line 237 Heres line 234 - 249 (from /div to /div): </div> <div id="intro" style="position:absolute; width:272px; height:107px; z-index:17; top: 80px; left: 30px; visibility: visible;" class="inblocktitle"> <p class="textblock"> <?php InsertMenu($pages, 'thispage'); ?> <?php if (isset($error['notSent'])) { ?> <h5>Server error</h5> <p class="warning"><?php echo $error['notSent']; ?></p> <?php } elseif ($mailSent) { ?> <h5>Thank you for your comments</h5> <p>We appreciate your feedback, and will be in touch if necessary.</p> <p> <?php } else { ?> <p>Do you have any comments or suggestions?</p> <p>Please use the following form to give us your feedback on any aspect of Bizzie Lizzie Barn. We will not use your email address for any other purpose than replying to you. </p> <?php } ?> <?php if (!$mailSent) { ?> </div> Link to comment https://forums.phpfreaks.com/topic/42671-how-to-fix-fatal-error-call-to-undefined-function-insertmenu/ Share on other sites More sharing options...
kenrbnsn Posted March 14, 2007 Share Posted March 14, 2007 That function is not a PHP supplied function, so it must be a user written function. You either have to write it or include the file where it's defined into your script. Ken Link to comment https://forums.phpfreaks.com/topic/42671-how-to-fix-fatal-error-call-to-undefined-function-insertmenu/#findComment-207051 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.