gpt4 book ai didi

php - 在同一页面添加sql函数?

转载 作者:行者123 更新时间:2023-11-29 08:40:02 24 4
gpt4 key购买 nike

我最初将此脚本放置在链接文件 favorite.php 中。

当用户在 profile.php 页面上的用户个人资料上单击“添加到收藏夹”时,它将链接到 favorite.php 并运行 sql 查询。

现在有什么方法可以将此脚本添加到 profile.php 页面,以便它在同一页面 (profile.php) 上回显消息。

当我复制并粘贴脚本时,它会清除 profile.php 页面的全部内容并显示未找到用户。

有人可以告诉我我需要做什么吗?谢谢

<?php

require_once('includes/session.php');
require_once('includes/functions.php');
require('includes/_config/connection.php');

session_start();

confirm_logged_in();

if (isset ($_GET['to'])) {
$user_to_id = $_GET['to'];


}


if (!isset($_GET['to']))
exit('No user specified.');

$user_id = $_GET['to'];

$result = mysql_query("INSERT INTO ptb_favorites (user_id, favorite_id) VALUES (".$_SESSION['user_id'].", ".$user_to_id.")")
or die(mysql_error());

echo "<div class=\"infobox-profile\"><strong>This is your profile</strong> - to edit now <a href=\"account_settings.php\">click here</a></div>";


?>

p.s 我会添加 profile.php 的代码,但前提是您必须了解该页面的布局,因为该页面上的代码太多。

最佳答案

看来你需要了解requireinclude。这是在应用程序的多个位置运行一组通用代码的最佳方式。

http://php.net/manual/en/function.include.php

关于php - 在同一页面添加sql函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14076042/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com