我把这个脚本放在了一个链接文件 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>";
?>
ps 我会为 profile.php 添加代码,但前提是您必须知道该页面的布局方式,因为该页面上的代码太多。