如何让CSS与PHP一起工作?

时间:2014-02-21 07:17:01

标签: php html css

我想在.php登录脚本中使其看起来像我的HTML网页的其余部分。

有人告诉我,我可以使用.css和这个脚本来做到这一点:

<link rel="stylesheet" type="text/css" href="style.css" />

我该怎么处理那个脚本?我需要获取html文件并使其与我的.php一起使用,以便我的登录页面与我的网站的其余部分匹配,而不仅仅是一个带有用户名和密码框的白页。感谢。


<?php include('_header.php'); ?> 
<form method="post" action="index.php" name="loginform"> 
     <label for="user_name"><?php echo WORDING_USERNAME; ?></label> 
     <input id="user_name" type="text" name="user_name" required /> 
     <label for="user_password"><?php echo WORDING_PASSWORD; ?></label> 
     <input id="user_password" type="password" name="user_password" autocomplete="off" required /> 
     <input type="checkbox" id="user_rememberme" name="user_rememberme" value="1" />    
     <label for="user_rememberme">

 <?php echo WORDING_REMEMBER_ME;

2 个答案:

答案 0 :(得分:3)

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8" />
    <link rel="stylesheet" type="text/css" href="style.css" />
    <title>Web-page</title>
</head>
<body>
    <h1><?php echo "Page title created with PHP"; ?></h1>
</body>
</html>

您可以使用style.css以任何方式设置此页面的样式。同时:使用PHP进行登录处理

答案 1 :(得分:0)

让我试着解释你为什么不能这样做。在网站中,有两种类型的程序在数据发送到浏览器之前在server上运行。另一种类型会发送到您的browser并在那里运行。

PHP 是服务器端的。 PHP脚本中的所有代码都在经过处理的服务器上运行。然后,信息将通过互联网发送到您的浏览器以供显示。

CSS Javascript 也会发送到您的浏览器,但会发送给您的代码。浏览器运行代码。服务器与它们无关。

你可能会发现一些基本的PHP,HTML教程。