Prueba de esta manera :
Código PHP:
Ver original$conexion=mysql_connect("localhost","root","root")
or die("Problemas en la conexion");
mysql_select_db("perfumeria",$conexion) or die("Problemas en la selección de la base de datos");
$sql_com="SELECT * FROM usuarios WHERE nombres='".$_GET['id']."'";
mysql_select_db("registro", $cnn);
$resu=mysql_query ($sql,$cnn);
$datos=mysql_fetch_assoc ($resu);
?>
<div id="datos">
<form name="frm_usuario" method= "POST" action ="actualizar.php ">
<input type="hidden" name="txt_id" size="15" value="<?php echo $datos['id']?>">
<input type = "text" name="txt_nombre" size="25" value="<?php echo $datos['nombre']?>">
<input type = "text" name="txt_apellidos" size="25" value="<?php echo $datos['apellido']?>">
<input type="submit" name "btn_modificar" value="modificar">
</form>
</div>