Download List Click to Open or Right Click and Click "Save Target As...".
|
Email Cover Letters
$ok = @mysql_query("SELECT ID,category,title,link,description,type FROM repdocs WHERE category='Email Cover Letters'");
if (!$ok) {
echo 'Could not run query: ' . mysql_error();
exit;
}
while ($row = mysql_fetch_array($ok)) {
$ID = $row[0];
$Category = $row[1];
$Title = $row[2];
$Link = $row[3];
$Description = $row[4];
$Type = $row[5];
echo("- $Title $Description $Type
");
}
?>
|
Presentation
$ok = @mysql_query("SELECT ID,category,title,link,description,type FROM repdocs WHERE category='Presentation'");
if (!$ok) {
echo 'Could not run query: ' . mysql_error();
exit;
}
while ($row = mysql_fetch_array($ok)) {
$ID = $row[0];
$Category = $row[1];
$Title = $row[2];
$Link = $row[3];
$Description = $row[4];
$Type = $row[5];
echo("- $Title $Description $Type
");
}
?>
|
Product Price Sheets
$ok2 = @mysql_query("SELECT ID,category,title,link,description,type FROM repdocs WHERE category='Prices'");
if (!$ok2) {
echo 'Could not run query: ' . mysql_error();
exit;
}
while ($row2 = mysql_fetch_array($ok2)) {
$ID = $row2[0];
$Category2 = $row2[1];
$Title2 = $row2[2];
$Link2 = $row2[3];
$Description2 = $row2[4];
$Type2 = $row2[5];
echo("- $Title2 $Description2 $Type2
");
}
?>
|
Private Product Documents - Not for dissemination
$ok3 = @mysql_query("SELECT ID,category,title,link,description,type FROM repdocs WHERE category='Private'");
if (!$ok3) {
echo 'Could not run query: ' . mysql_error();
exit;
}
while ($row3 = mysql_fetch_array($ok3)) {
$ID = $row3[0];
$Category3 = $row3[1];
$Title3 = $row3[2];
$Link3 = $row3[3];
$Description3 = $row3[4];
$Type3 = $row3[5];
echo("- $Title3 $Description3 $Type3
");
}
?>
|
Miscellaneous Documents
$ok4 = @mysql_query("SELECT ID,category,title,link,description,type FROM repdocs WHERE category='Miscellaneous'");
if (!$ok4) {
echo 'Could not run query: ' . mysql_error();
exit;
}
while ($row4 = mysql_fetch_array($ok4)) {
$ID = $row4[0];
$Category4 = $row4[1];
$Title4 = $row4[2];
$Link4 = $row4[3];
$Description4 = $row4[4];
$Type4 = $row4[5];
echo("- $Title4 $Description4 $Type4
");
}
?>
|