pero tengo un error en mi pagina modificar que no se por que sucede, le expondre esete codigo para ver si me pueden ayudar! gracias de natemano

este es el linck a mi pagina modificar
<? echo"<a href='update_pass.php?usuario=".$fila['usuario']."&pwd=".$fila['pwd']."'>Cambiar Contraseña</a>";?>
y este es el codigo de la pagina update
<?
include_once("../connections/conexion.php");
require("../connections/session.php");
if($_GET['form_contrasena']=="new_pwd"){
if($_POST['pwd_new']==$_POST['pwd_conf']){
$update_pass=mysql_query("UPDATE registro_users SET pwd='".md5($_POST['pwd_new'])."' WHERE usuario=".$_GET['usuario']."");
header("Location:update_pass.php");
}else{
header("Location:update_pass.php");
}
}
?>
<body>
<form id="form1" name="form1" method="post" action="update_pass.php?form_contrasena=new_pwd">
<p> </p>
<table width="776" border="0" align="center">
<tr>
<td width="770"><div align="center"> <img src="../img/barner copia.jpg" width="770" height="86" />
<table width="770" border="0" align="center" bgcolor="#365776">
<tr>
<td width="65" class="content"><div align="center" class="Estilo2">
<? if($_SESSION['PrivApobla']=="3"){echo"<a href='index_admin.php' class='Estilo1'>Administrar</a>";}?>
</div></td>
<td width="90" class="content"><div align="center" class="Estilo4"><a href="../inicio/registros_exp_apobla.php" class="Estilo5">Nuevo</a></div></td>
<td width="90" class="content"><div align="center" class="Estilo4"><a href="update_pass.php" class="Estilo5" >Actualizar</a></div></td>
<td width="90" class="content"><div align="center" class="Estilo4"><a href="../inicio/registros_exp_apobla.php" class="Estilo5">Buscar</a></div></td>
<td width="90" class="content"><div align="center" class="Estilo4"><a href="update_pass.php" class="Estilo5">Guardar</a></div></td>
<td width="140" class="content"><div align="center" class="Estilo4"><a href="update_pass.php" class="Estilo5">Informe Estadístico</a><a href="../inicio/buscar.php" class="Estilo5"></a></div></td>
<td width="90" class="content"><div align="center" class="Estilo4"><a href="update_pass.php" class="Estilo5">Imprimir</a></div></td>
<td width="90" class="content"><div align="center" class="Estilo4"><a href="../connections/Logout.php" class="Estilo5">Salir</a></div></td>
</tr>
</table>
</div></td>
</tr>
</table>
<table width="770" border="0" align="center" bgcolor="#CAD9E2" >
<tr>
<td width="772"></td>
</tr>
<tr>
<td><table width="326" border="0" align="center" class="content">
<tr>
<td height="58" colspan="2"><span class="Estilo1">Cambiar Contraseña del Usuario : <? echo $_GET['usuario']?> </span></td>
</tr>
<tr>
<td width="118"><div align="right">Nueva Contraseña :</div></td>
<td width="198"><label>
<input name="pwd_new" type="password" id="pwd_new" />
</label></td>
</tr>
<tr>
<td height="28"><div align="left"> Conf Contraseña : </div></td>
<td><label>
<input name="pwd_conf" type="password" id="pwd_conf" />
</label></td>
</tr>
<tr>
<td height="31"><input name="Entrar" type="submit" class="content" id="Entrar" value="Aseptar" /></td>
</form>