Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im getting this error on my login form please help

Parse error: syntax error, unexpected T_STRING in C:\xampp\htdocs\login.php on line 19 line 19 = $query = “select * from users where username=’$username’ and password=’$password’”;

http://76.31.248.130/

this is my info

<?php

//Database Information

$dbhost = "mysql14.freehostia.com";
$dbname = "dalmet_databse";
$dbuser = "dalmet_databse";
$dbpass = "*****";

//Connect to database

mysql_connect ( $dbhost, $dbuser, $dbpass)or die("Could not connect: ".mysql_error());
mysql_select_db($dbname) or die(mysql_error());

session_start();
$username = $_POST[‘username’];
$password = md5($_POST[‘password’]);

$query = “select * from users where username=’$username’ and password=’$password’”;

$result = mysql_query($query);

if (mysql_num_rows($result) != 1) {
$error = “Bad Login”;
    include “login.html”;

} else {
    $_SESSION[‘username’] = “$username”;
    include “memberspage.php”;
}

?>
share|improve this question

closed as too localized by Lightness Races in Orbit, Jocelyn, David Stratton, Justin Satyr, mgibsonbr Nov 5 '12 at 3:15

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 5 down vote accepted

Stop using Word to edit your PHP; your code is using fancy quotes instead of normal quotes.

share|improve this answer
1  
that didn't help me – user870401 Jul 31 '11 at 3:38
Fixing all the quotes didn't help you? Really? – Ignacio Vazquez-Abrams Jul 31 '11 at 3:38
@Ignacio - What are your experiences and thoughts on Geany? Obviously from your comment it seems you recommend it, what are the benefits as compared to Textmate or ViM? – Garrett Smallwood Jul 31 '11 at 3:43
@Garrett: I haven't used TextMate, but Geany is probably a bit less powerful than TextMate, and much, much less powerful than Vim. However, it is available for more platforms and less money than TextMate, and is much easier to use than Vim. – Ignacio Vazquez-Abrams Jul 31 '11 at 3:45

Not the answer you're looking for? Browse other questions tagged or ask your own question.