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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.