Hello friends
I am new to php and would like some help.
I would like to read the feed URL from a query string. So far I am managing to input the feed and displaying it in a browser but is there a way of executing the url? Like for example ?feed=www.w3schools.com and when enter is hit the w3schools page is opened in the browser. My code so far.
php code:
<?php
echo $_GET["feed"];
?>
Thanks
Johan