function clean_get_query ($needle)
Use this function to clean URL query (GET method) from several values. It is useful if you need to redirect back to previous URL while you need to remove some values from the URL.
$needle can be a string or an array, the values to be removed.
Example 1
<?php
require './includes/user_init.php';
echo clean_get_query ('p');
?>
If you call the sample with a query, eg: test.php?a=1&b=2&p=3; it will produce test.php?a=1&b=2
Subscribe to our newsletter for the latest updates and exciting promotions!