function Actualizar() { $cluster = new Cluster(); if (isset($_POST['c_id']) && $_POST['c_id'] != "" && isset($_POST['nombre']) && $_POST['nombre'] != "") { $cluster_id = $_POST['c_id']; $nombre = $_POST['nombre']; $estatus = $_POST['estatus']; if ($estatus == "on") { $cluster->Edita_Cluster($cluster_id, $nombre, "1"); } else { $cluster->Edita_Cluster($cluster_id, $nombre, "0"); } header("Location: index.php?okupdate"); } else { header("Location: index.php?error"); } }