have a search box on my downloads site, where you’re meant to type in the name of an application and if I have it on my downloads site, it will come up under the search box.
However, my issue is that when I search anything, it doesn’t come up with any results - clarification on what I’ve done wrong would be appreciated.
<?php // gets elements by tagnames $app = $_POST['app']; $space = "
";
// following code will echo search results
echo ‘Form Results
’;
echo 'Application Searched: '.$_POST[‘app’].$space;
// finish PHP
?>