我有一些我的網站沒有正確託管PHP的代碼。切換到PHP兼容的服務器不是一種選擇。我如何將其更改爲HTML?如何將我的代碼從PHP更改爲HTML?
的index.php:
<head>
<link rel="stylesheet" type="text/css" href="CSS/index.css">
<?php
include("common/common.php")
?>
</head>
<body>
<?php
commonheader()
?>
<h1>Coming Soon!</h1>
的common.php:
<head>
<link rel="stylesheet" type="text/css" href="common.css">
</head>
<?php
function commonheader()
{
?>
<div class="header"
<nav>
<a href="index.php"><button type="button">Home</button></a>
<!--First Case (unnamed)-->
<button type="button"><span class="comingsoon">Coming soon!</span></button>
<!--Second Case (unnamed)-->
<button type="button"><span class="comingsoon">Coming soon!</span></button>
<a href="help.php"><button type="button">Help</button></a>
</nav>
</div>
<?php
}
?>
如果我需要附加的CSS文件,我可以。
爲什麼downvotes?這是我做的嗎? – OldBunny2800
https://httpd.apache.org/docs/2.2/howto/ssi.html並使用JS/Ajax。 –
你可能得到了那些,因爲你沒有顯示任何努力。你的問題轉化爲「堆棧不是免費的代碼轉換服務」。 ;-) –