thank you for your reply's im still a little lost though.
let me better explain my script. im sending a value from a JavaScript that looks like this-
// ssmItems[...]=[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
ssmItems[0]=["Please Select A Watch"] //create header
ssmItems[1]=["Alain Siberstein", "<a href='mens.php?whatCase=mensWatches&whichBrand=Alain Siberstein'></a>", "",1,"no"]
ssmItems[2]=["Alfredo Versace", "<a href='mens.php?whatCase=mensWatches & whichBrand=Alfredo Versace'></a>","",1]
and recieving on a diffeent page that looks like this-
<?php
if (!empty($GET['whatCase'])){
$src = $GET['whatCase'];
}else{
$src = 1;
}
switch($src){
//default:
case 'mensWatches':
//$whichBrand = 'rado';
$whichBrand =$_GET['whichbrand'];
your continued help is appreciated