我正在为 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>;
它显示一个错误: Parse error: syntax error, unexpected '/' in C:\xampp\htdocs\index.php 第 9 行
我该如何解决?