Documentation for NLS Bibliography Maintenance Functions on bogrex

NLS Bibliography - Maintenance Documentation


Process / program name

Delete a Citation / cit_delete.php3

Description

This function deletes a citation from the database by its id number and finishes the deletion process.

Files called / (used) by the program

NameWhat it doesFiles called
top.php3Adds a header to the page. 
bottom.htmlAdds a footer to the page. 
*.php3  

mySQL Statement(s)

  • mysql_query("delete from ARTICLES where ID_NUMBER=$idnum", $db);
  • mysql_query("delete from ABSTRACTS where ID_NUMBER=$idnum", $db);
  • mysql_query("delete from AUTHORS where ID_NUMBER=$idnum", $db);
  • mysql_query("delete from DESCRIPTORS where ID_NUMBER=$idnum", $db);
  • mysql_query("delete from SORTED_LOOKUP where ID_NUMBER=$idnum", $db);

    Javascript


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


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