Last active
March 2, 2018 08:56
-
-
Save DavidMellul/680fa8843cb16e39fb20313fcbe5bf3f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$filter = $_GET['filter']; | |
echo "<p>Results for $filter</p>"; | |
$filtered_list = $database->search_query($filter); | |
/* Rendering stuff */ | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment