欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

请帮帮忙,小弟我贴代码了,现在不用下载文件看了

程序员文章站 2024-02-09 09:02:16
...
请帮帮忙,我贴代码了,现在不用下载文件看了。
本帖最后由 abkey1 于 2014-06-01 10:13:30 编辑
a.php  包含一个删除选中书签的复选框

function display_user_urls($url_array)
{
// display the table of URLs

// set global variable, so we can test later if this is on the page
global $bm_table;
$bm_table = true;
?>




$color = "#cccccc";
echo "";
echo "";
if (is_array($url_array) && count($url_array)>0)
{
foreach ($url_array as $url)
{
if ($color == "#cccccc")
$color = "#ffffff";
else
$color = "#cccccc";
// remember to call htmlspecialchars() when we are displaying user data
echo "";
echo "";
echo "";
}
}
else
echo "";
?>
BookmarkDelete?
".htmlspecialchars($url)." value=\"$url\">
No bookmarks on record


}

点击上面删除的复选框后,需要点击下方的删除书签
// only offer the delete option if bookmark table is on this page
global $bm_table;
if($bm_table==true)
echo "Delete BM | ";
else
echo "Delete BM | ";
?>


delete_bms.php 删除函数如下
require_once('bookmark_fns.php');
session_start();

//create short variable names
$del_me = $HTTP_GET_VARS['del_me'];
$valid_user = $HTTP_GET_VARS['valid_user'];

do_html_header('Deleting bookmarks');
check_valid_user();
if (!filled_out($HTTP_GET_VARS))
{
echo 'You have not chosen any bookmarks to delete.
Please try again.';
display_user_menu();
do_html_footer();
exit;
}
else
{
if (count($del_me) >0)
{
foreach($del_me as $url)
{
if (delete_bm($valid_user, $url))
echo 'Deleted '.htmlspecialchars($url).'.
';
else
echo 'Could not delete '.htmlspecialchars($url).'.
';
}
}
else
echo 'No bookmarks selected for deletion';
}
// get the bookmarks this user has saved
if ($url_array = get_user_urls($valid_user))
display_user_urls($url_array);

display_user_menu();
do_html_footer();
?>



delete_bm函数的代码如下

function delete_bm($user, $url)
{
// delete one URL from the database
$conn = db_connect(); //此处已经包含在另一个php文件中,连接数据库是正常的
// delete the bookmark
if (!$conn->query( "delete from bookmark
where username='$user' and bm_url='$url'"))
throw new Exception('Bookmark could not be deleted');
请帮帮忙,小弟我贴代码了,现在不用下载文件看了

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频


网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • 请帮帮忙,小弟我贴代码了,现在不用下载文件看了
  • 专题推荐