在php中定义一个单词

时间:2012-04-07 10:16:32

标签: php html word

我是php的新手,很抱歉我的简单问题。需要一步一步了解。

示例:index.php

<html>

<header>
-including a file (/lang.php for example)
</header>

<body>

<div>
<a href="aboutus.php"> - word1 - </a> | <a href="contact.php"> - word2 - </a>
</div>

</body>
</html>

示例:lang.php

word1 = ABOUT US
word2 = CONTACT

如何以最简单的方式完成这项工作?

1 个答案:

答案 0 :(得分:2)

lang.php将类似于:

<?php
$word1 = "About us";
$word2 = "Contact";
?>

在你的其他文件中你将有

<?php
include "lang.php";
?>

<div>
<a href="aboutus.php"> - <?php echo $word1; ?> - </a> | 
   <a href="contact.php"> - <?php echo $word2; ?> - </a>
</div>

记住:

  1. PHP中的变量名称始终以$
  2. 开头
  3. 如果您的服务器配置为接受短标记,则PHP代码需要位于<?php?>标记之间(或<??>
  4. HTML中没有<header>标记。也许你在想<head>。无论如何,include语句不一定需要在那里