This is my menu code on my index.php:
function menu_case($selected)
{
switch($selected)
{
case 0:
echo add_product_form();
break;
case 1:
echo find_products();
break;
default:
echo find_products();
break;
}
}
When the page loads I have find_products() as a default value, on the same page I have a "Add Product" which will link to a function, how can I do that?
I have tried doing this but I get an error:
<a href='<? menu_case(0) ?>' class='style10'>Add Product</a> | Add Category<br><HR></td>
Note that my add_product_form() contains a form which be displayed on the same page.