How can I include a javascript file using php echo? - Stack Overflow

How can I include a javascript file using php echo ?I am creating a html page using php ---echo "&

How can I include a javascript file using php echo ?

I am creating a html page using php ---

echo "<html><head><link rel='stylesheet' type='text/css' <script src="Calculation.js"> </script>  href='style.css' </head><body>";

I have included script code in the above line and then in form tag ---

<form action='/workdonecalculation/index.php?_pagination_off=1' method='post'  class='form'  onSubmit='return workdone();'>

But my php code doesn't call my javascript file (Calculation.js)

How can I include a javascript file using php echo ?

I am creating a html page using php ---

echo "<html><head><link rel='stylesheet' type='text/css' <script src="Calculation.js"> </script>  href='style.css' </head><body>";

I have included script code in the above line and then in form tag ---

<form action='/workdonecalculation/index.php?_pagination_off=1' method='post'  class='form'  onSubmit='return workdone();'>

But my php code doesn't call my javascript file (Calculation.js)

Share Improve this question edited Oct 5, 2012 at 11:20 Fabrizio Calderan 123k26 gold badges170 silver badges182 bronze badges asked Oct 5, 2012 at 11:17 SunSun 891 gold badge2 silver badges11 bronze badges 3
  • You can't call a JS file. You can call a function defined in that file. – Havelock Commented Oct 5, 2012 at 11:19
  • Come on, there are myards of examples for this. You need to echo a reference to the javascript file inside the head section of your html page. – arkascha Commented Oct 5, 2012 at 11:20
  • echo '<script src="URL_TO_YOUR_SCRIPT"> </script>'; – Rupesh Patel Commented Oct 5, 2012 at 11:31
Add a ment  | 

6 Answers 6

Reset to default 5
 echo "<html><head><link rel='stylesheet' type='text/css'/> <script src='Calculation.js'></script>"

First close link tag, and you are using double quotes.. for the src= use single, because you are already using double in the echo "". So src='Calculation.js'

Also you can do this the easy way use variables.

$a=<<<HERE
<script src="Calculation.js"> </script>
HERE;
echo $a;

Also you can close php and start html where ever you wish

<?php
if($i)
{
?>
<script src=""></script> 
<?php
}
?>

Is that what you wanted???

You didn't close <link> tag and <script> tag misplaced inside <link> tag. Also you need to escape the double quotes in src="Calculation.js" or simple you enclose with single quotes.

Here is the correct code,

echo "<html><head><link rel='stylesheet' type='text/css' href='style.css' /><script src='Calculation.js'></script> </head><body>";

You'll need to plete link tag first.

Try this

echo "<html><head><link rel='stylesheet' type='text/css' href='style.css' /> <script src='Calculation.js'></script>  </head><body>";

Seems the link tag is not closed properly and the double quotes in script tag is not escaped.

Try the below code :

echo "<html><head><link rel='stylesheet' type='text/css' href='style.css'><script src='Calculation.js'></script></head></html>";

use single qoute:

echo '<html><head><link rel="stylesheet" href="style.css" type="text/css" /> <script type="text/javascript" src="script.js"></script> </head><body>';

hope it helps

print("<script type=\"text/javascript\" src=\"Calculation.js\"></script>");

Are you running this code on Windows, if not are you sure the file is called "Calculation.js" and not "calculation.js"? Also, is it definitely in the same directly as the PHP script that's calling it?

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743603122a4477421.html

相关推荐

  • How can I include a javascript file using php echo? - Stack Overflow

    How can I include a javascript file using php echo ?I am creating a html page using php ---echo "&

    2天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信