Código PHP:
    while($result=mysql_fetch_array($rs)){
  $id=$result["ID"];
echo "<tr>";
echo "<td><input type='radio' name='radio' id='radio' value=".$id."></td>";
echo "<td class='autor' align='left'>".$result["ID"]."</td>";
echo "<td class='texxt' align='left'>".$result["Fecha"]."</td>";
echo "<td class='texxt' align='left'>".$result["Titulo"]."</td>";
echo "</tr>";
 } 
    cuando paso esto a la siguiente pagina por AJAX asi:
Código HTML:
 "javascript:FAjax('noticia.php','contenido','radio='+document.getElementById('radio').value,'post');"
Gracias.
 
