Hello i have a some keywords stored in a array called $search What i want is to replace the blahblah with search array. <?php include('http://127.0.0.1/search/searchinclude.php?query=BLAHBLAHBLAH&search=1&results=10'); ?> i though the following code would work but it is'nt working, do i need to add print with it ? and if yes then how... thanks searchinclude.php?query='. $search .'&search Code (markup):
Hi mate, Try this: include('http://127.0.0.1/search/searchinclude.php?query='. urlencode($search) .'&search=1&results=10'); PHP: