Prueba hacer algo así:
Código PHP:
<?php
include ('../conect.php');
$date=date('Y-n-d G:i:s');
extract($_REQUEST);
$nombre = $_REQUEST["nombre"];
$apellido = $_REQUEST["apellido"];
$cedula = $_REQUEST["cedula"];
$telefono = $_REQUEST["telefono"];
$mail = $_REQUEST["mail"];
$fecha = $_REQUEST["fecha"];
$sql = "UPDATE info SET
nombre='$nombre',
apellido = '$apellido',
cedula = '$cedula',
telefono = '$telefono',
mail = '$mail',
fecha = '$fecha'";
$result = mysql_query($sql) or die( "[ERROR] Query: $query, error: " . mysql_error() );
if( $result ) {
header("Location: ../edit_perf_x2.php?status=1");
} else {
header("Location: ../edit_perf_x2?status=2");
}
?>
Saludos.