BrockW Posted March 4, 2006 Share Posted March 4, 2006 I have an applet that I use for advertising on the front page of my site. I was wondering if I could take the applet and save it as applet.phtml and then call for it where ever I want it? The applet looks like:<APPLET CODE="coolbanner.class" WIDTH="468" HEIGHT="60"><PARAM NAME="img1" VALUE="Advertise/images/Lindatest.jpg"><PARAM NAME="link1" VALUE="http://www.watercolor-online.com/storefront1/Lindas%20New%20Book.htm"><PARAM NAME="img2" VALUE="Advertise/images/QuickMile.jpg"><PARAM NAME="link2" VALUE="http://www.quickmile.com/index.html"><PARAM NAME="speed" VALUE="3"><PARAM NAME="delay" VALUE="10"><PARAM NAME="useborder" VALUE="Y"><PARAM NAME="bordercolor" VALUE="10"><PARAM NAME="bordercolorred" VALUE="255"><PARAM NAME="bordercolorgreen" VALUE="255"><PARAM NAME="bordercolorblue" VALUE="255"></APPLET>I was going to call the applet with this:<script language="php"> include($_SERVER['DOCUMENT_ROOT'] . "/PhpScripts/Applet.phtml");</script>Is this even possible? I am new to PHP. My son is the guru and I am trying to do this one without him. Wont he be proud? Thanks in advance. Link to comment https://forums.phpfreaks.com/topic/4080-phtml/ Share on other sites More sharing options...
Hooker Posted March 4, 2006 Share Posted March 4, 2006 try:[code]<?php include($_SERVER['DOCUMENT_ROOT'] . "/PhpScripts/Applet.phtml");?>[/code]It fails to load the applet for me (because i dont have coolbanner.class) so i cant be sure if it'l completely work but it deffinately loads applet.phtml properly. Link to comment https://forums.phpfreaks.com/topic/4080-phtml/#findComment-14212 Share on other sites More sharing options...
BrockW Posted March 4, 2006 Author Share Posted March 4, 2006 It tries but won't open the images. I think the coolbanner.class file has to be in the same folder.Thanks for trying. Link to comment https://forums.phpfreaks.com/topic/4080-phtml/#findComment-14289 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.