Jump to content

cant see syntax error


Lassie

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.