Jump to content

Include file problems.. Pls. Help


teramera

Recommended Posts

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.
Regards
tera
Link to comment
https://forums.phpfreaks.com/topic/10300-include-file-problems-pls-help/
Share on other sites

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.inc

Hope to help!

Matt

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.