Forum Moderators: coopster
Now, I want when user click on Category one, thy will link to another page that displaying all the items in category one which I will script in category_one.php..How can I do it?Do you have any example of these or any other similar information?
switch($op){
case "one":
//Link to category_one.php
break;
case "two":
//Link to category_two.php
break;
default:
menu();
break;
}
the category_one.php and category_two.php was in same directory to index.php, so how to link it?