Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> General/Other Stuff
Author Message
paranor
Worker
Worker



Joined: Aug 28, 2003
Posts: 227

PostPosted: Mon Mar 29, 2004 7:30 pm Reply with quote

I'm trying to use some java programs different then I've done it before (and that was within a block using one java app).

I need this stuff in the <head> area
Quote:

<script language="javascript" src="dropdown_menu/sniffer.js"></script>
<script language="javascript1.2" src="dropdown_menu/custom.js"></script>
<script language="javascript1.2" src="dropdown_menu/style.js"></script>


I would assume it goes in the my_header.php file since that is called within the <head> area. But I'm not having any luck with what syntax to put.

Then I need to add this in the <body> section - but again what syntax do I use?

Quote:

<script language="javascript1.2" src="dropdown_menu/menu.js"></script>


Since this isn't in a stand-alone block I'm not sure what to type in.

thanks
 
View user's profile Send private message
Raven
Site Admin/Owner



Joined: Aug 27, 2002
Posts: 17088

PostPosted: Mon Mar 29, 2004 8:37 pm Reply with quote

There are several ways to accomplish this. You could add the 3 statements after the closing ?> tag. You could write echo statements. I always recommend the HEREDOC sysntax. That's exactly why the PHP authors created it. It allows you to add raw html, css, javascript, java, etc. to your PHP scripts w/o having to worry about escaping quotes and such.
Code:
echo <<< _JS_

<script language="javascript" src="dropdown_menu/sniffer.js"></script>
<script language="javascript1.2" src="dropdown_menu/custom.js"></script>
<script language="javascript1.2" src="dropdown_menu/style.js"></script>
_JS_;
Here is more info on this technique http://www.ravenphpscripts.com/postt28.html . As to the other script, try adding it as a 4th line in your example and see if it might work ok there.
 
View user's profile Send private message
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> General/Other Stuff

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©