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

📄 delete.php

📁 SetCursor CWnd LoadCursor DestroyWindow CDialog GetClientRect C Button GetStockObject CFont GetWindo
💻 PHP
字号:
<?
function delete($table,$id)
         {
		   global $conn;
		   $i=0;
		   $temp="";
		   while(isset($id[$i]))
		     { $temp.=$id[$i].",";
			   $i++;
			   }  
		    $sql="delete from ".$table." where id in (".$temp.")";
			odbc_exec($conn,$sql);
		 }
		 
		 function modefiy($table,$id)
         {
		   global $conn;
		   $i=0;
		   $temp="";
		   while(isset($id[$i]))
		     { $temp.=$id[$i].",";
			   $i++;
			   }  
		    $sql="select * from ".$table." where id in (".$temp.") order by id desc";
			return(odbc_exec($conn,$sql));
		 }
?>


⌨️ 快捷键说明

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