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
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
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.