怎么让从数据库里提出来的用户名字滚动起来呢????????????

解决方案 »

  1.   

    https://zhidao.baidu.com/question/448095757.html
      

  2.   

    <?php 
    session_start();
        include("conn/conn.php");
        $result=mysql_query("select * from tb_admin",$conn);
    if($result!==0){//用上一步取得的行数
       echo "欢迎".$admin_user."登录";   
      }
    ?>请问怎么插入滚动的代码,就是说放在哪个位置???
      

  3.   

    这是html代码,放在echo输出这里。
      

  4.   

    echo的后面???
      

  5.   

    echo '<marquee direction=up behavior=scroll loop=3 scrollamount=1 scrolldelay=10 align=top bgcolor=#ffffff height=300 width=30% hspace=20 vspace=10 onmouseover=this.stop() onmouseout=this.start()> 欢迎'.$admin_user.'登录 </marquee>';
      

  6.   

    <?php
    // use fckeditor for users to post their messages
    $myFCKeditor = new FCKeditor('content');
    $myFCKeditor->BasePath="./includes/fckeditor/";
    $myFCKeditor->ToolbarSet="Basic";
    $myFCKeditor->Config['EnterMode']='br';
    // $myFCKeditor->Config['SkinPath']='./includes/fckeditor/editor/skins/default/';
    $myFCKeditor->Value='Hello';
    $myFCKeditor->Create();
    ?>
    这是写留言的时候可以用表情,但是为什么在实时视图显示了,但在浏览器运行不显示呢?????