OK.
If you change the lump in the previous post to:
<div class="wrapperAttribsOptions">
<?php $nick='http://www.mydomain.com/'.$options_name[$i].'.php'; echo $nick; ?>
<?php $nextnick='http://google.com'; ?>
<h4 class="optionName back"><?php echo $options_name[$i]; ?>
<a href="#" onClick="window.open('<?php echo $nextnick; ?>');return false">What's This</a>
</h4>
<div class="back"><?php echo "\n" . $options_menu[$i]; ?></div>
<br class="clearBoth" />
</div>
You will get some results. Not want you want yet because I do not know your domain and where you are going to put the new pages for the pop up.
The line that reads:
<?php $nick='http://www.mydomain.com/'.$options_name[$i].'.php'; echo $nick; ?>
Shows how you can build a url that is unique to the attribute in question. It is also outputing it to the page at the moment ( the echo bit of it ) just to check it works. And it will let you know what you need to name your new files that hold the popup information. It names this variable nick.
You should be able to adapt this to create a URL to suit your site.
The line that reads :
<?php $nextnick='http://google.com'; ?>
Creates another variable, nextnick, that has a URL for google. You won't need this line finally. It is just there to demonstrate the process.
The line that reads :
<a href="#" onClick="window.open('<?php echo $nextnick; ?>');return false">What's This</a>
Is the line that creates the new window. At the moment it is using the variable $nextnick but you will want to change this to use the variable $nick once you have made the urls to suit your site.
Also, you will probably want to add some extra details to it as shown in the link in my previous posts so that the pop-up doesn't happen in a normal window.
that should get you there with a bit of work. let me know how you get on.
(it is running as is on my test server. link is h t t p://www.nickcollie.co.uk/catalog/index.php?main_page=product_info&cPath=25&products_id=78 with the spaces taken out of the http
Nick