Código PHP:
if (isset($_POST['buscar'])){
$Sql="select * from llamados_comandancia where cod_llamado='$cod_llamado' ORDER BY cod_llamado ASC ";
$result=mysql_query($Sql,$link);
======================================
Código PHP:
<td width="200" height="20" class="mandatory">ID</td>
<td><input type="text" name="tx_cod_llamado" id="tx_cod_llamado" maxlength="50" size="40" value="<?php echo $cod_llamado; ?>"></td>
<td width="400" height="20" class="comment">//--- Número ünico</td>
=========
Código PHP:
cod_llamado='".$_POST['tx_cod_llamado']."';
y pasarselo a $cod_llamado
alguna idea?