Download List Click [Edit] or [DEL] to Edit or Delete Entry.
|
Email Cover Letters
$ok = dbq("SELECT ID,category,title,link,description,type FROM repdocs WHERE category='Email Cover Letters' ORDER BY title ASC");
// if (!$ok) {
// echo 'Could not run query: ' . mysql_error();
// exit;
// }
foreach($ok as $row){
$ID = $row[0];
$Category = $row[1];
$Title = $row[2];
$Link = $row[3];
$Description = $row[4];
$Type = $row[5];
echo("- Edit DEL $Title $Description
");
}
?>
|
Presentation
$ok = dbq("SELECT ID,category,title,link,description,type FROM repdocs WHERE category='Presentation' ORDER BY title ASC");
foreach($ok as $row){
$ID = $row[0];
$Category = $row[1];
$Title = $row[2];
$Link = $row[3];
$Description = $row[4];
$Type = $row[5];
echo("- Edit DEL $Title $Description
");
}
?>
|
Press
$okb = dbq("SELECT ID,category,title,link,description,type FROM repdocs WHERE category='Press' ORDER BY title ASC");
foreach($okb as $rowb){
$ID = $rowb[0];
$Category = $rowb[1];
$Title = $rowb[2];
$Link = $rowb[3];
$Description = $rowb[4];
$Type = $rowb[5];
echo("- Edit DEL $Title $Description
");
}
?>
|
Prices & Specs
$ok2 = dbq("SELECT ID,category,title,link,description,type FROM repdocs WHERE category='Prices & Specs' ORDER BY title ASC");
foreach($ok2 as $row2){
$ID = $row2[0];
$Category2 = $row2[1];
$Title2 = $row2[2];
$Link2 = $row2[3];
$Description2 = $row2[4];
$Type2 = $row2[5];
echo("- Edit DEL $Title2 $Description2
");
}
?>
|
Private Product Documents - Not for dissemination
$ok3 = dbq("SELECT ID,category,title,link,description,type FROM repdocs WHERE category='Private' ORDER BY title ASC");
foreach($ok3 as $row3){
$ID = $row3[0];
$Category3 = $row3[1];
$Title3 = $row3[2];
$Link3 = $row3[3];
$Description3 = $row3[4];
$Type3 = $row3[5];
echo("- Edit DEL $Title3 $Description3
");
}
?>
|
Miscellaneous Documents
$ok4 = dbq("SELECT ID,category,title,link,description,type FROM repdocs WHERE category='Miscellaneous' ORDER BY title ASC");
foreach($ok4 as $row4){
$ID = $row4[0];
$Category4 = $row4[1];
$Title4 = $row4[2];
$Link4 = $row4[3];
$Description4 = $row4[4];
$Type4 = $row4[5];
echo("- Edit DEL $Title4 $Description4
");
}
?>
|