用PHP+java实现自动新闻滚动窗口

时间:2023-11-22 12:31:01 

show.php源代码:
<?
if ($action=="cp"){
echo"<div align=center>
  <p>滚动菜单资料输入端</p>
  <form method=post action=show.php?action=edit>
    <p>文字一:  
      <input type=text name=t1 maxlength=30>
      链接一:
      <input type=text name=l1 maxlength=50>
    </p>
    <p>文字二:  
      <input type=text name=t2 maxlength=30>
      链接二:  
      <input type=text name=l2 maxlength=50>
    </p>
    <p>文字三:  
      <input type=text name=t3 maxlength=30>
      链接三:  
      <input type=text name=l3 maxlength=50>
    </p>
    <p>文字四:  
      <input type=text name=t4 maxlength=30>
      链接四:  
      <input type=text name=l4 maxlength=50>
    </p>
    <p>文字五:  
      <input type=text name=t5 maxlength=30>
      链接五:  
      <input type=text name=l5 maxlength=50>
    </p>
    <p>  
      <input type=submit name=Submit value=提交>
      <input type=submit name=Submit2 value=重写>
    </p>
  </form>
</div>";exit;}
if ($action=="edit"){
$wname="data.txt";#数据保存文件,属性666
$writeurl="<a href=$l1>$t1<\/a><br><br><a href=$l2>$t2<\/a><br><br><a href=$l3>$t3<\/a><br><br><a href=$l4>$t4<\/a><br><br><a href=$l5>$t5<\/a><br><br>";
$fp=fopen($wname,"w");
$ww=fputs($fp,$writeurl);
if ($ww){echo 文件写入成功;}else{echo 写入失败;}
exit;}
$wname="php-bin/data.txt";#由于是在页面调用,这里必须填写页面和程序相对路径或者绝对路径!
$fa=fopen($wname,"r+");
$wwww=fread($fa,filesize($wname));
echo "<table border= \"0\" bgcolor=\"#A8EB9B\" cellpadding=\"1\" cellspacing= \"0\" width=129><TR><TD><table bgcolor=\"#FFFFFF\" cellpadding=\"5\" cellspacing=\"0\" width=129 border=\"0\" VALIGN=\"Top\"><tr><td><script language=\"JavaScript1.2\">
var marqueewidth=118
var marqueeheight=104
var speed=1
var marqueecontents='$wwww'
if (document.all)
document.write('<marquee direction=\"up\" scrollAmount='+speed+' style=\"width:'+marqueewidth+';height:'+marqueeheight+'\">'+marqueecontents+'</marquee>')
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout(\"window.onresize=regenerate\",450)
intializemarquee()
}
}
function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}
function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout(\"scrollit()\",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}
window.onload=regenerate2
</script><ilayer width=&{marqueewidth}; height=&{marqueeheight}; name=\"cmarquee01\"><layer name=\"cmarquee02\" width=&{marqueewidth}; height=&{marqueeheight};></layer></ilayer></tr></table></TD></TR></TABLE>";
?>

使用时先要建立一个名为data.txt的空白文件放在show.php的同一级目录下,然后在页面里使用include调用即可!
show.php?action=cp及可以进行设置,当然,因为没有密码保护,你可以把cp改成其他文字! 

标签:用P,PH,HP,Pj,ja,av,va,a实,实现,现自,自动,动新,新闻,闻滚,滚动,动窗,窗口,口
0
投稿

猜你喜欢

  • Python简单基础小程序的实例代码

    2021-03-29 21:17:59
  • Python获取本机所有网卡ip,掩码和广播地址实例代码

    2021-06-26 20:32:17
  • python实现查找两个字符串中相同字符并输出的方法

    2023-09-01 04:03:42
  • python实现贪吃蛇游戏源码

    2021-07-22 12:45:24
  • 一文详解如何用GPU来运行Python代码

    2022-02-26 17:49:30
  • Python asyncio异步编程简单实现示例

    2023-09-23 15:27:52
  • 从零学python系列之从文件读取和保存数据

    2021-02-11 01:51:29
  • 如何查看MySQL连接的root密码

    2024-01-25 08:47:43
  • 在Python中使用__slots__方法的详细教程

    2022-10-30 09:46:10
  • Python 实现购物商城,含有用户入口和商家入口的示例

    2023-09-26 11:39:46
  • 无级分类的多级联动

    2020-07-02 12:53:12
  • Python3中的最大整数和最大浮点数实例

    2021-04-05 01:37:16
  • SQL 提权 常用命令

    2024-01-23 03:21:45
  • VMware中linux环境下oracle安装图文教程(二)ORACLE 10.2.05版本的升级补丁安装

    2023-07-22 11:37:11
  • 仿QQ和MSN消息提示的效果代码

    2010-03-16 12:17:00
  • 使用JavaScript获取地址栏参数的方法

    2024-04-28 10:18:25
  • 基于python 微信小程序之获取已存在模板消息列表

    2022-02-25 16:51:25
  • python文件写入write()的操作

    2023-11-10 04:33:11
  • MySQL 常用引擎总结分享

    2024-01-27 04:05:28
  • 由Python运算π的值深入Python中科学计算的实现

    2021-10-21 03:48:06
  • asp之家 网络编程 m.aspxhome.com