".__('There was a problem creating link').""; else { echo "

".__('Successfully created')."

"; $id_link = mysql_insert_id(); } } if (isset($_POST["update"])){ // if update $id_link = safe_input($_POST["id_link"]); $name = safe_input($_POST["name"]); $link = safe_input($_POST["link"]); $sql_update ="UPDATE tlink SET name = '".$name."', link ='".$link."' WHERE id_link = '".$id_link."'"; $result=mysql_query($sql_update); if (! $result) echo "

".__('There was a problem modifying link')."

"; else echo "

".__('Successfully updated')."

"; } if (isset($_GET["borrar"])){ // if delete $id_link = safe_input($_GET["borrar"]); $sql_delete= "DELETE FROM tlink WHERE id_link = ".$id_link; $result=mysql_query($sql_delete); if (! $result) echo "

".__('There was a problem deleting link')."

"; else echo "

".__('Successfully deleted')."

"; } // Main form view for Links edit if ((isset($_GET["form_add"])) or (isset($_GET["form_edit"]))){ if (isset($_GET["form_edit"])){ $creation_mode = 0; $id_link = safe_input($_GET["id_link"]); $sql1='SELECT * FROM tlink WHERE id_link = '.$id_link; $result=mysql_query($sql1); if ($row=mysql_fetch_array($result)){ $nombre = $row["name"]; $link = $row["link"]; } else echo "

".__('Name error')."

"; } else { // form_add $creation_mode =1; $nombre = ""; $link = ""; } echo ''; echo ''; if ($creation_mode == 1) echo ""; else echo ""; echo ""; echo ''; echo ''; echo ''; echo "
'.__('Link name').'
'.__('Link').'
"; echo ""; echo "
"; if (isset($_GET["form_add"])) { echo ""; } else { echo ""; } echo '
'; } else { // Main list view for Links editor echo ""; echo ""; echo ""; $sql1='SELECT * FROM tlink ORDER BY name'; $result=mysql_query($sql1); $color=1; while ($row=mysql_fetch_array($result)){ if ($color == 1){ $tdcolor = "datos"; $color = 0; } else { $tdcolor = "datos2"; $color = 1; } echo ""; echo ''; } echo "
".__('Link name')."".__('Delete')."
".$row["name"]."
"; echo ""; echo "
"; echo "
"; echo ""; echo "
"; } ?>