Código PHP:
$rutt= urlencode ('$row[rut]');
echo '<td ><a href="?rut='.$rutt.'" onclick=MM_openBrWindow("veo.php?rut='.$rutt.'","","width=300,height=150,") > ver</a></td></tr><br>';
lo dejo en comillas simples la parte de ('$row[rut]') por que si se los quito la variable se ve sin esas %24row% etc....
la recivo :
Código PHP:
<?php
$a = urldecode($_GET['rut']);
echo $a;
?>
Código PHP:
$row[rut]
que tendre malo o estare haciendo mal .