样式php文本使用css使用变量

时间:2016-01-08 19:08:21

标签: php html css styles text-styling

我正在为TeamsSpeak服务器开发网站,我想设置一个使用php显示的文本:

echo "Welcome: ".ucwords($name).". IP of our server is: ".ucwords($ip)." , and port is: ".ucwords($port)."<br>";

我想整个文字的样式。我尝试添加标签,例如

echo <div class="welcome_msg">"Welcome: ".ucwords($name).". IP of our server is: ".ucwords($ip)." , and port is: ".ucwords($port)."<br>"</div>;

它显示错误:解析错误:语法错误,第9行的C:\ xampp \ htdocs \ index.php中的意外'/'

我该如何解决?

5 个答案:

答案 0 :(得分:1)

您还需要在引号内加<div class="welcome_msg"></div>

像这样:

echo "<div class='welcome_msg'>Welcome: ".ucwords($name).". IP of our server is: ".ucwords($ip)." , and port is: ".ucwords($port)."<br></div>";

答案 1 :(得分:0)

echo '<div class="welcome_msg">"Welcome: '.ucwords($name).'. IP of our server is: '.ucwords($ip).' , and port is: '.ucwords($port).'<br></div>';

**数字字(IP和端口)不需要ucwords

答案 2 :(得分:0)

你也可以试试这个:

echo "<div class='welcome_msg'>Welcome: " . ucwords($name) . ". IP of our server is: " . ucwords($ip) . ", and port is: " . ucwords($port) . "<br></div>";

答案 3 :(得分:0)

echo '<div class="welcome_msg"> Welcome: '.ucwords($name).'. IP of our server is: '.ucwords($ip).' , and port is: '.ucwords($port).'<br></div>';

答案 4 :(得分:0)

您的HTML标记会被视为文本,并用其他文本包含在引号中。

由于您的HTML在文本中包含引号,因此您需要在文本中添加\之前的引号来转义它们。转义引号告诉PHP不要将该特定报价视为字符串的结束引用。

echo "<div class=\"welcome_msg\">Welcome: ".ucwords($name).". IP of our server is: ".ucwords($ip)." , and port is: ".ucwords($port)."<br></div>";