Home  >  Article  >  Backend Development  >  How to run js files in php

How to run js files in php

藏色散人
藏色散人Original
2019-10-23 09:06:035659browse

How to run js files in php

How to run js files in php?

If you want to run php code, you must first install the php running environment. You can go to the php official website to download and install.

After the environment is set up, we can write PHP code. As shown in the picture, we create a new php file.

How to run js files in php

Open with notepad and enter the following code.

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK" />
</head>
<body>
<?php
echo "<script type=&#39;text/javascript&#39;>alert(&#39;&#39;我是嵌入php内的js代码&#39;);</script>";
?>
</body>
</html>

How to run js files in php

In the code, we use the tag to embed the js code into the php file. Running this file will pop up a prompt message.

How to run js files in php

Next, we use the browser to run the php file to see if our embedded js code is successful.

How to run js files in php

Then, the browser will pop up a prompt message for us. Explanation, our embedded js code is successful!

How to run js files in php

For more PHP related knowledge, please visit PHP Chinese website!

The above is the detailed content of How to run js files in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn