7,10d6
< $preblurb="
Remote Files
RJM Programming - March, 2023
";
< $uval="";
< $tval="";
< $oval="1";
18c14
< if (isset($_POST['url']) && $_POST['url'] != '') {
---
> if (isset($_POST['url'])) {
21d16
< $uval=str_replace("+"," ",urldecode($_POST['url']));
23c18
< } else if (isset($_GET['url']) && $_GET['url'] != '') {
---
> } else if (isset($_GET['url'])) {
26d20
< $uval=str_replace("+"," ",urldecode($_GET['url']));
32c26
< if (isset($_POST['type']) && $_POST['type'] != '') {
---
> if (isset($_POST['type'])) {
35d28
< $tval=str_replace("+"," ",urldecode($_POST['type']));
38c31
< } else if (isset($_GET['type']) && $_GET['type'] != '') {
---
> } else if (isset($_GET['type'])) {
41d33
< $tval=str_replace("+"," ",urldecode($_GET['type']));
48c40
< if (isset($_POST['ord']) && $_POST['ord'] != '') {
---
> if (isset($_POST['ord'])) {
50d41
< $oval="$matcho";
52c43
< } else if (isset($_GET['ord']) && $_GET['ord'] != '') {
---
> } else if (isset($_GET['ord'])) {
54d44
< $oval="$matcho";
74,75c64
< $postblurb="
";
< echo "Remote Files - RJM Programming - March, 2023${preblurb}${blurb}${title}
${postblurb}";
---
> echo "${blurb}${title}
";