sorry,
At page1.php,
$pcode="$noticia[keycode]";
$custname="$noticia[keydesc]";
echo "<a href='page2.php?custid=$pcode&custname=$custname'>View List</a>";
At page2.php,
if (isset($HTTP_GET_VARS['custid'])){
$custid = ($HTTP_GET_VARS['custid']-0); }
else
{$custid=0;}
if (isset($HTTP_GET_VARS['custname'])){
$custname = ($HTTP_GET_VARS['custname']);
echo($custname);
}
else
{$custname='';}