⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 flink_main.php

📁 这是matlab的一个小程序
💻 PHP
字号:
<?php
require_once(dirname(__FILE__)."/config.php");
CheckRank(0,0);
if($cfg_mb_lit=='Y')
{
	ShowMsg("由于系统开启了精简版会员空间,你访问的功能不可用!","-1");
	exit();
}
if(empty($dopost))
{
	$dopost = '';
}
if($dopost=="addnew")
{
	AjaxHead();
	$row = $dsql->GetOne("Select count(*) as dd From `#@__member_flink` where mid='".$cfg_ml->M_ID."' ");
	if($row['dd']>=20)
	{
		echo "<font color='red'>增加网址失败,因为已经达到二十个网址的上限!</font>";
		GetLinkList($dsql);
		exit();
	}
	if(!eregi("^http://",$url))
	{
		$url = "http://".HtmlReplace($url,2);
	}
	$inquery = "INSERT INTO `#@__member_flink`(mid,title,url) VALUES(".$cfg_ml->M_ID.",'$title','$url'); ";
	$dsql->ExecuteNoneQuery($inquery);
	echo "<font color='red'>成功增加一链接!</font>";
	GetLinkList($dsql);
	exit();
}
else if($dopost=="del")
{
	AjaxHead();
	$aid = intval($aid);
	if($aid=='' || $aid==0)
	{
		exit("<font color='red'>参数错误!</font>");
	}
	$dsql->ExecuteNoneQuery("Delete From 	`#@__member_flink` where aid='$aid' And mid='".$cfg_ml->M_ID."';");
	echo "<font color='red'>成功删除链接:{$aid}</font>";
	GetLinkList($dsql);
}
else if($dopost=="update")
{
	AjaxHead();
	$aid = intval($aid);
	if(!eregi("^http://",$url))
	{
		$url = "http://".HtmlReplace($url,2);
	}
	$upquery = "Update `#@__member_flink` set title='$title',url='$url' where aid='$aid' And mid='".$cfg_ml->M_ID."'; ";
	$rs = $dsql->ExecuteNoneQuery($upquery);
	if($rs)
	{
		echo "<font color='red'>成功更新链接:{$title}</font>";
		GetLinkList($dsql);
		exit();
	}
	else
	{
		echo "<font color='red'>更新链接:{$title} 失败!</font>";
		GetLinkList($dsql);
		exit();
	}
}
else if($dopost=="reload")
{
	AjaxHead();
	GetLinkList($dsql);
	exit();
}

//默认界面
else
{
	require_once(dirname(__FILE__)."/templets/flink_main.htm");
	exit();
}

//函数
function GetLinkList($dsql)
{
	global $cfg_ml;
	$dsql->SetQuery("Select * From `#@__member_flink` where mid='".$cfg_ml->M_ID."' order by aid desc");
	$dsql->Execute();
	$j=0;
	while($row = $dsql->GetArray())
	{
		$j++;
		$line = "
<div class='item flink'>
  <div class='itemHead' >
    <div class='fRight'>
    <span class='itemDigg'><a href='#' onclick='UpdateType({$row['aid']})'>[更新]</a></span>
    <span class='itemManage'><a href='#' onclick='DelType({$row['aid']})'>[删除]</a></span>
    </div>
    <span class='itemTitle'>名称:<input name='title{$row['aid']}' type='text' id='title{$row['aid']}' value='{$row['title']}' class='text' /></span>
    <div class=' mT10'>网址:<input name='url{$row['aid']}' type='text' id='url{$row['aid']}' value='{$row['url']}' class='text' /></div>
  </div>
</div>
<hr class='dotted' />";
		echo $line;
	}
	if($j==0)
	{
		echo "尚无任何链接";
	}
}
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -