mnybud Posted July 30, 2007 Share Posted July 30, 2007 Simple question I think.... I have a existing script that calls a keyword like this... <?php keyword() ?> I have another external script that I call like this normally <?php include("http://www.domain.com/query.php?query=keyword"); ?> I am trying to make this work.... <?php include("http://www.domain.com/query.php?query=<? keyword() ?>"); ?> How do you include PHP within PHP like this? Link to comment https://forums.phpfreaks.com/topic/62418-include-php-inside-php/ Share on other sites More sharing options...
morphboy23 Posted July 30, 2007 Share Posted July 30, 2007 Maybe try something like.. <?php include("http://www.domain.com/query.php?query=" . keyword() . ">"); ?> Link to comment https://forums.phpfreaks.com/topic/62418-include-php-inside-php/#findComment-310660 Share on other sites More sharing options...
jitesh Posted July 30, 2007 Share Posted July 30, 2007 (1) Include needs root path not a server path. (2) The variable can be use in included files. Example mainfile.php <?php $keyword = "search"; include("included_file1.php"); ?> included_file1.php <?php echo " This is the keyword of mainfile ".$keyword; ?> Link to comment https://forums.phpfreaks.com/topic/62418-include-php-inside-php/#findComment-310661 Share on other sites More sharing options...
mnybud Posted July 30, 2007 Author Share Posted July 30, 2007 <?php include("http://www.domain.com/query.php?query=" . keyword() . ">"); ?> doesnt work for me but I think thats what I am looking for.... I dont really understand this example... Example mainfile.php <?php $keyword = "search"; include("included_file1.php"); ?> included_file1.php <?php echo " This is the keyword of mainfile ".$keyword; ?> ... Link to comment https://forums.phpfreaks.com/topic/62418-include-php-inside-php/#findComment-310670 Share on other sites More sharing options...
mnybud Posted July 30, 2007 Author Share Posted July 30, 2007 can anyone help me with this? Link to comment https://forums.phpfreaks.com/topic/62418-include-php-inside-php/#findComment-310917 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.