Documentation for NLS Bibliography Maintenance Functions on bogrex

NLS Bibliography - Maintenance Documentation


Process / program name

Delete a Keyword / delete_descriptor.php3

Description

This program begins the Delete a Keyword process. After the program determines the highest and last keyword identification number used, it displays a drop-down list of keywords for the user to chose the one to be deleted. After choosing, the user must press the delete button.

Files called / (used) by the program

NameWhat it doesFiles called
top.php3Adds a header to the page. 
bottom.htmlAdds a footer to the page. 
dsc_delete.php3Deletes the keyword chosen from the keyword list using the 'descriptor number' or keyword identification number of the keyword. 

mySQL Statement(s)

  • mysql_query("select max(DESC_NUMBER) from DESCRIPTOR_LIST",$db);
  • mysql_query("select DESC_NUMBER,DESC_TEXT from DESCRIPTOR_LIST order by DESC_TEXT",$db);

    Javascript


    require('top.html');
    require('bottom.html');
    FORM ACTION=\"dsc_delete.php3\"


    manuals/system/bib-maint/maintenance/d-delete_descriptor.php3