Forum Moderators: phranque
I have a banner created using PHP and a CSS script.
<SNIP>
I am using FrontPage and I need to include such banner in the current HTML pages from my site, but I sincerely have no idea on how to proceed. I assume I have to create a frame like the one used by Google's ADSense ads, but I don't know how to do it.
Any help will be greatly appreciated.
[edited by: trillianjedi at 7:57 am (utc) on May 13, 2005]
[edit reason] No URL's please - see TOS [/edit]
A word of caution as per another post from hakre (WebmasterWorld member)
The type ("application/x-httpd-php") can differ on various setups. you can find the correct type in httpd.conf or ask your administrator for it.
AddHandler application/x-httpd-php .html However this approach may well be overkill for your situation. When you say a "banner", do you mean a advertisement graphic? If so, then you should just use an iframe (inline frame) to display it. Something like:
<iframe src="mybanner.php" width="468" height="60"></iframe> Then you are just calling a file called "mybanner.php" which is the only one that needs to be parsed for PHP.
<iframe align="center" src="xml_728x90.php" width="732" height="92" allowTransparency="true" frameBorder="0" scrolling="no" marginwidth="1" marginheight="1" name="mlad"></iframe></p>
<Sorry, no personal URLs.
See Terms of Service [webmasterworld.com]>
[edited by: tedster at 5:22 am (utc) on May 14, 2005]
:)
<Sorry, no personal URLs.
See Terms of Service [webmasterworld.com]>
[edited by: tedster at 5:23 am (utc) on May 14, 2005]