Hey guys,
Had a problem with Wordpress. When I click submit on a form for a plugin I made it says "insufficient permissions" So I can see that being a problem. I decided it might be best to use PHP_SELF.
Just a question really.
At the moment it is 3 forms. With different actions.
<form method="post" action="deleteuser_ac.php">
<form method="post" action="adduser_ac.php">
<form method="post" action="updateuser_ac.php">
How do I make it so when I click submit it does it all on that page and executes that code rather than going to an external page?
Thanks :)