home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 April
/
PCWorld_2005-04_cd.bin
/
akce
/
web
/
phpnuke
/
PHP-Nuke-7.5.exe
/
html
/
modules
/
News
/
friend.php
< prev
next >
Wrap
PHP Script
|
2004-08-23
|
5KB
|
105 lines
<?php
/************************************************************************/
/* PHP-NUKE: Web Portal System */
/* =========================== */
/* */
/* Copyright (c) 2002 by Francisco Burzi */
/* http://phpnuke.org */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
/* Additional security & Abstraction layer conversion */
/* 2003 chatserv */
/* http://www.nukefixes.com -- http://www.nukeresources.com */
/************************************************************************/
if (!eregi("modules.php", $_SERVER['PHP_SELF'])) {
die ("You can't access this file directly...");
}
require_once("mainfile.php");
if (stristr($_SERVER["QUERY_STRING"],'%25')) header("Location: index.php");
$module_name = basename(dirname(__FILE__));
get_lang($module_name);
$pagetitle = "- "._RECOMMEND."";
function FriendSend($sid) {
global $user, $cookie, $prefix, $db, $user_prefix, $module_name;
$sid = intval($sid);
if(!isset($sid)) { exit(); }
include ("header.php");
$row = $db->sql_fetchrow($db->sql_query("SELECT title FROM ".$prefix."_stories WHERE sid='$sid'"));
$title = stripslashes(check_html($row['title'], "nohtml"));
title(""._FRIEND."");
OpenTable();
echo "<center><font class=\"content\"><b>"._FRIEND."</b></font></center><br><br>"
.""._YOUSENDSTORY." <b>$title</b> "._TOAFRIEND."<br><br>"
."<form action=\"modules.php?name=$module_name&file=friend\" method=\"post\">"
."<input type=\"hidden\" name=\"sid\" value=\"$sid\">";
if (is_user($user)) {
$row2 = $db->sql_fetchrow($db->sql_query("SELECT name, user_email FROM ".$user_prefix."_users WHERE username='$cookie[1]'"));
$yn = stripslashes($row2['name']);
$ye = stripslashes($row2['user_email']);
}
echo "<b>"._FYOURNAME." </b> <input type=\"text\" name=\"yname\" value=\"$yn\"><br><br>\n"
."<b>"._FYOUREMAIL." </b> <input type=\"text\" name=\"ymail\" value=\"$ye\"><br><br><br>\n"
."<b>"._FFRIENDNAME." </b> <input type=\"text\" name=\"fname\"><br><br>\n"
."<b>"._FFRIENDEMAIL." </b> <input type=\"text\" name=\"fmail\"><br><br>\n"
."<input type=\"hidden\" name=\"op\" value=\"SendStory\">\n"
."<input type=\"submit\" value="._SEND.">\n"
."</form>\n";
CloseTable();
include ('footer.php');
}
function SendStory($sid, $yname, $ymail, $fname, $fmail) {
global $sitename, $nukeurl, $prefix, $db, $module_name;
$fname = stripslashes(removecrlf($fname));
$fmail = stripslashes(removecrlf($fmail));
$yname = stripslashes(removecrlf($yname));
$ymail = stripslashes(removecrlf($ymail));
$sid = intval($sid);
$row = $db->sql_fetchrow($db->sql_query("SELECT title, time, topic FROM ".$prefix."_stories WHERE sid='$sid'"));
$title = stripslashes(check_html($row['title'], "nohtml"));
$time = $row['time'];
$topic = intval($row['topic']);
$row2 = $db->sql_fetchrow($db->sql_query("SELECT topictext FROM ".$prefix."_topics WHERE topicid='$topic'"));
$topictext = stripslashes(check_html($row2['topictext'], "nohtml"));
$subject = ""._INTERESTING." $sitename";
$message = ""._HELLO." $fname:\n\n"._YOURFRIEND." $yname "._CONSIDERED."\n\n\n$title\n("._FDATE." $time)\n"._FTOPIC." $topictext\n\n"._URL.": $nukeurl/modules.php?name=$module_name&file=article&sid=$sid\n\n"._YOUCANREAD." $sitename\n$nukeurl";
mail($fmail, $subject, $message, "From: \"$yname\" <$ymail>\nX-Mailer: PHP/" . phpversion());
update_points(6);
$title = urlencode($title);
$fname = urlencode($fname);
Header("Location: modules.php?name=$module_name&file=friend&op=StorySent&title=$title&fname=$fname");
}
function StorySent($title, $fname) {
include ("header.php");
$title = htmlspecialchars(urldecode(check_html($title, "nohtml")));
$fname = htmlspecialchars(urldecode($fname));
OpenTable();
echo "<center><font class=\"content\">"._FSTORY." <b>$title</b> "._HASSENT." $fname... "._THANKS."</font></center>";
CloseTable();
include ("footer.php");
}
switch($op) {
case "SendStory":
SendStory($sid, $yname, $ymail, $fname, $fmail);
break;
case "StorySent":
StorySent($title, $fname);
break;
case "FriendSend":
FriendSend($sid);
break;
}
?>