creating assoiated array in php
I have the following code that creates the category and associate link for each category. I like to know how can I have the category name different than the keywords for each category. For example I like to search for ‘superman’ but like to call the link ‘superman movie’
Any help will be greatly appreciated
thanks
<? $categories= array('Superman','Batman','Iron Man','Incredible Hulk');?>
<h2>Categories:</h2>
<? foreach ($categoriesas$category) {?>
<a href="/category.php?psps_search=<?= urlencode($category)?>"><?= $category ?></a><br/>
