grazzman Posted December 7, 2006 Share Posted December 7, 2006 Ok, I need to get the following to work.1 <?php 2 $server = $_GET['server'];3 include "http://www.serverstats.com/monitor.php?mon=" + $server ;4 ?>I know that line 2 is working and pulling 'server' from the URL but I can not get it to append it to the end of the URL on line 3. It just tries to find the value of $server as a local file and ignored the "http://" address in line 3. If any one can help merge this so it will include the URL + $server I would be forever greatful.Thanks Link to comment https://forums.phpfreaks.com/topic/29756-using-a-string-in-an-include-url-line/ Share on other sites More sharing options...
fert Posted December 7, 2006 Share Posted December 7, 2006 replace the + with a . Link to comment https://forums.phpfreaks.com/topic/29756-using-a-string-in-an-include-url-line/#findComment-136633 Share on other sites More sharing options...
grazzman Posted December 7, 2006 Author Share Posted December 7, 2006 So just putinclude "http://www.serverstats.com/monitor.php?mon=" . $server ;Do I need to have that in ( ) or anything like that?Also, Thanks, I figured it would be something small and stupid... allways is. Link to comment https://forums.phpfreaks.com/topic/29756-using-a-string-in-an-include-url-line/#findComment-136635 Share on other sites More sharing options...
mansuang Posted December 7, 2006 Share Posted December 7, 2006 You can write bothinclude "http://www.serverstats.com/monitor.php?mon=".$server;orinclude ("http://www.serverstats.com/monitor.php?mon=".$server) ; Link to comment https://forums.phpfreaks.com/topic/29756-using-a-string-in-an-include-url-line/#findComment-136636 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.