teramera Posted May 23, 2006 Share Posted May 23, 2006 Hi!, I translated an usual HTML page into PHP and inserted the Include file tag but the include file does not show.When i test the include file on its own .. it works. I am certain I have something wrong in the syntax .. or the way the code is presented.Please take a look at the code below and help.The code that i tried to include is : <?php include("http://mysitename.com/banners.php"); ?>The code which is not working is:[code]echo " <div align=\"center\">\n";echo " <center>\n";echo " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"160\" style=\"border-collapse: collapse\" bordercolor=\"#111111\">\n";echo " <tbody><tr> \n";echo " <td> \n";[color=#CC0000]echo " <p align=\"center\"><?php include(\"http://www.mydomainname.com/banners.php\"); ?></td>\n";[/color]echo " </tr>\n";echo " </tbody></table>\n";echo " </center>\n";echo " </div>\n";echo " <p>\n";echo " <br>\n";[/code]Please help am going nutty with this as a newbie.Thanks in advance.Regardstera Quote Link to comment https://forums.phpfreaks.com/topic/10300-include-file-problems-pls-help/ Share on other sites More sharing options...
mjozwiak Posted May 24, 2006 Share Posted May 24, 2006 Hell, First of all, you dont want to use echo like that [code]<?php $include = include('http://www.mydomainname.com/banners.php'); //should be an .inc file?><html><head><title></title></head><body><table><tr><td><?php echo $include;?></td>//or the code below</tr></table></body></html><td><?php include('http://www.mydomainname.com/banners.php'); ?></td>[/code]Play around with it and you should make the banners.php local and name it banners.incHope to help!Matt Quote Link to comment https://forums.phpfreaks.com/topic/10300-include-file-problems-pls-help/#findComment-38418 Share on other sites More sharing options...
kenrbnsn Posted May 24, 2006 Share Posted May 24, 2006 Do not use the full URL in your include statement. Since it looks like you're including a local file, just use the local path.Ken Quote Link to comment https://forums.phpfreaks.com/topic/10300-include-file-problems-pls-help/#findComment-38434 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.