Added icons and avatars.
This commit is contained in:
@ -16,6 +16,8 @@ $incomingauthor = $_POST['author'];
|
||||
$author = filter_var($incomingauthor, FILTER_SANITIZE_STRING);
|
||||
$incomingmaterial = $_POST['material'];
|
||||
$material = filter_var($incomingmaterial, FILTER_SANITIZE_STRING);
|
||||
$incomingcollection = $_POST['collection'];
|
||||
$collection = filter_var($incomingcollection, FILTER_SANITIZE_STRING);
|
||||
$incomingtom = filter_input(INPUT_POST, 'tom', FILTER_SANITIZE_STRING);
|
||||
|
||||
|
||||
@ -46,6 +48,10 @@ if (!empty($material)) {
|
||||
$mat = $searchjoiner.'mat='.$material;
|
||||
}
|
||||
|
||||
if (!empty($collection)) {
|
||||
$col = $searchjoiner.'col='.$collection;
|
||||
}
|
||||
|
||||
if (!empty($incomingtom)) {
|
||||
$tom = $searchjoiner.'tom='.$incomingtom;
|
||||
}
|
||||
@ -57,7 +63,7 @@ if (!empty($title)) {
|
||||
$urlend = $searchsuffix;
|
||||
}
|
||||
|
||||
$SearchURL = implode("", array_filter(array($url, $searchprefix, $ctx, $searchmiddle, $la, $au, $kw, $su, $mat, $tom, $urlend)));
|
||||
$SearchURL = implode("", array_filter(array($url, $searchprefix, $ctx, $searchmiddle, $la, $au, $kw, $su, $mat, $col, $tom, $urlend)));
|
||||
|
||||
?>
|
||||
|
||||
@ -153,6 +159,7 @@ $SearchURL = implode("", array_filter(array($url, $searchprefix, $ctx, $searchmi
|
||||
echo '<strong>Author:</strong> '.$author.'<br />';
|
||||
echo '<strong>Subjects:</strong> '.$subject.'<br />';
|
||||
echo '<strong>Material Type Code:</strong> '.$material.'<br />';
|
||||
echo '<strong>Collection Code:</strong> '.$collection.'<br />';
|
||||
echo '<strong>Type of Material:</strong> '.$incomingtom.'<br />';
|
||||
echo '<strong>Langauge:</strong> '.$language.'<br />';
|
||||
?>
|
||||
|
Reference in New Issue
Block a user