Lassie Posted December 8, 2009 Share Posted December 8, 2009 I have a syntax error on line 53 of this code but I cant see whats wrong with it. <?php //Add my_plugin hook function my_plugin(){ do_action('my_plugin'); } function input_form_handler(){ $form_output=input_form(); return $form_output; } function input_form(){ $form_output="Hello World"; return $form_output; } add_action('my_plugin','input_form_handler'); //add admin panel add_action('admin_menu','my_plugin_admin_actions'); function my_plugin_admin_actions(){ add_options_page('Author Data Edit','Author Data Edit',1,); } ?> Link to comment https://forums.phpfreaks.com/topic/184396-cant-see-syntax-error/ Share on other sites More sharing options...
salathe Posted December 8, 2009 Share Posted December 8, 2009 See the last comma in this line: add_options_page('Author Data Edit','Author Data Edit',1,); P.S. There is no line 53 in that code. Link to comment https://forums.phpfreaks.com/topic/184396-cant-see-syntax-error/#findComment-973382 Share on other sites More sharing options...
Lassie Posted December 8, 2009 Author Share Posted December 8, 2009 Yes, thats it thanks Link to comment https://forums.phpfreaks.com/topic/184396-cant-see-syntax-error/#findComment-973550 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.