check comment for html
Posted on
16th Feb 2014 07:03 pm by
admin
hi, I just wanted to check if a comment a user posts contains HTML, and if it does, to not allow it to be posted.
this is my current php, any help would be very much appreciated! thanks.
Did you know?Explore Trending and Topic pages for more stories like this.
Code:
<?php
$comment=$_POST['comment'];
$name=$_POST['name'];
$email=$_POST['email'];
$website=$_POST['website'];
$date=date("y/m/d h:i:s");
if($name && $email && $comment){
$sql="INSERT INTO `comments` (`name`, `email`, `website`, `articleid`, `comment`, `datetime`) VALUES ('$name', '$email', '$website', '$id', '$comment', '$date')";
$result=mysql_query($sql) or die(mysql_error());
if($result){
echo "Your comment was posted succesfully on the article n";
echo $rows['title'];
echo '<p><a href="view_article.php?id=';
echo $id;
echo '">Click here to go back to the article.</a></p>';
}else {
echo "Sorry, your comment could not be posted. Please make sure you fill in all the fields marked with *.n";
}
}else {
echo "Sorry, your comment could not be posted. Please make sure you fill in all the fields marked with *.n";
}
?>
No comments posted yet
Your Answer:
Login to answer
173
11
Other forums
insert PHP code into function
Hi,
I'm having problems when trying following:
I have:
Code: [Select]createBar("Do
SCO Unix
I know this might not be the place to ask, but, can anyone tell me if SCO Unix comes with PHP built
what are '%S%', '%E%'
for example when i see Code: [Select]printf("Hello %srn", $name);
what does %s means
Need help urgant
why down my code ony return one item instead of all the items selected.
$arr = array($date,$
array ...
hi
Code: function formatCategories($categories, $parentId)
{
// $navCat stores all child
Javascript form submit and radio buttons?
When this form is submitted, it is automatically resubmitted using JS.
All my fields are carr
PEAR in appliactiond development
When I was picking up PHP I went from procedural programming, fairly quickly into OOP, then after wr
http to https
Hi,
Is there any specific method/condition to move an http:// page to https:// ?
Array disappearing in foreach loop
Okay, I have this problem where an array will become undefined in a foreach loop.
Here is the
Keeping track of php uploads
Hello all.
I was looking at the way PHP handles file uploads.
It seems that PHP uses a tem