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
| Name | What it does | Files called |
| top.php3 | Adds a header to the page. | |
| bottom.html | Adds 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