Home  >  Article  >  Backend Development  >  不用CSS,如何控制如下显示

不用CSS,如何控制如下显示

WBOY
WBOYOriginal
2016-06-13 13:35:52855browse

不用CSS,怎么控制如下显示?
当前登陆用户:admin
  安全登陆

echo "当前登陆用户为:".$_COOKIE['username']:
echo '

安全退出
';

怎么用标签控制这两行显示在一行,如下显示

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->当前登陆用户:admin                    安全登陆


   




------解决方案--------------------
不能用样式表时,可以用表格

echo "";
echo '
当前登陆用户为:{$_COOKIE['username']}安全退出
';
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn