TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Israel
707
1.3k
217.7k
The same syntax error at the last line
Dec 2 2019 8:53 AM
Hi Sirs,
I am passing night just to know how to resolv my problem.
I always receive this message error on the last line. Please how to resolv it?
in my insert.php
<?php
if(isset($_POST))
{
if ($_POST["name"] || $_POST["email"] || $_POST["password"])
{
$name = $_POST['name'];
$email = $_POST['email'];
$password = $_POST['password'];
if($name && $email && $password)
{
mysqli_query("INSERT INTO users(name,email,password) VALUES('$name','$email','$password')");
$registered = mysqli_affected_rows();
echo "$registered was insered";
}
else
{
echo "You have to complete the form";
}
?>
into my form.php
<html
<head>
</head>
<form method="post" action="insert.php">
<body>
Name: <input type = "text" name="name" /><br />
Email: <input type = "text" name="email" /><br />
Password: <input type = "password" name="password"/><br />
<p>
<input type="submit" value="register" /><br/>
</body>
</form>
Reply
Answers (
3
)
How to write background colour codes in sql server
SplitContainer Print