Hola gisek,
El problema es que tu debes de pasarle por parámetro el id, en tiempo de ejecución no al dibujar tu pagina, debes de hacer algo así:
Código html:
Ver original<?
$sql="SELECT clientes.id_adg,
clientes.id_cliente,
clientes.nombre
FROM clientes
$res=mysql_query($sql);
while($registro=mysql_fetch_array($res))
{
$s = $registro[id_adg];
?>
<td><? echo $registro["id_adg"]; ?></td> <td><? echo $registro["id_cliente"]; ?></td> <td><? echo $registro["nombre"]; ?></td> <td align="center"><a href='#'onclick="openModalDialog('<?php echo $s; ?>')">Files
</a></td> <? } ?>
<script type="text/javascript" language="javascript"> function openModalDialog(id) {
var win = new Window('cliente', {
className: "alphacube",
title: "Archivo Digital",
width:600,
height:500,
opacity:.88,
resizable: false,
maximizable: false,
minimizable: false,
url: 'getdat.php?id=' + id,
}
)
win.setDestroyOnClose();
win.show(true);
win.showCenter();
};
Saludos.