Yes, that seems like the way to do it.
My private apache server has magic quotes on.
But if I want to share this script and be sure it work alright, it should have stripslashes.
This script I have rewritten, first thing does stripslashes.
Code: Select all
if(isset($_POST['submit'])){
$name=htmlspecialchars(stripslashes($_POST['name']));
if(empty($name))problem('Please enter your name!','1');
$from=htmlspecialchars(stripslashes($_POST['from']));
$a=check_mail_url();$email=$a['email'];$url=$a['url'];
$comments= htmlspecialchars(stripslashes($_POST['comments']));
if(empty($comments)) problem('Please enter comments!','1');
$remote=$_SERVER['REMOTE_ADDR'];
addEntry($name,$from,$email,$url,$comments,$remote);
exit();
/////////////////////////////////////////////////////////////
function addEntry($name,$from,$email,$url,$comments,$remote){
/* This part will help prevent multiple submissions */
session_start();if (isset($_SESSION['add']))problem('You may only submit once per session!
Thank you');
global $settings;
$delimiter=" ";
$added=date("Y-m-d @ H:i");
$comments=str_replace("
","
",$comments);
$comments=str_replace("
","
",$comments);
$comments=str_replace("
","
",$comments);
$addline="$name$delimiter$from$delimiter$email$delimiter$url$delimiter$comments$delimiter$added$delimiter$remote$settings[newline]";
$fp = @fopen($settings['logfile'],'rb') or problem('Cant read log file! CHMOD file to 666 (rw-rw-rw)');
$links = @fread($fp,filesize($settings['logfile']));
fclose($fp);
$addline .= $links;
$fp = fopen($settings['logfile'],'wb') or problem('Cant write to log file! CHMOD file to 666 (rw-rw-rw)');
fputs($fp,$addline);
fclose($fp);
$_SESSION['add']=1;
?>
<p> </p>
<p><b>Your message was successfully added!</b></p>
<p>Thank you</p>
<p> </p>
<?php
printDownHTML();
exit();
}[code]
[b]1.[/b] stripslashes();
[b]2.[/b] htmlspecialchars();
[b]3a.[/b] str_replace("
","
",$str); [b]3b.[/b] str_replace("
","
",$str); [b]3c.[/b] str_replace("
","
",$str);
One nice feature with this script is, using a SESSION variable [b]to avoid submitting same stuff twice[/b].
This is not unusually to happen. Every time you refresh, you submit a new post.
It also adds latest contact post on top.
halojoy
[color=#888888][size=85]Archived topic from Iceteks, old topic ID:3395, old post ID:27391[/size][/color]
... i make php ... i make it good