vote up -1 vote down star
<mx:RemoteObject id="zendAMF" destination="zend" showBusyCursor="true" source="test_class" >
<mx:method name="doLogin" result="onSayHelloResult(event)">
		<mx:arguments>
			<username>
				{username.text}
			</username>
			<password>
				{password.text}
			</password>
		</mx:arguments>
	</mx:method>
</mx:RemoteObject>

This is my Flex code, i am not using POST....

    	public function __construct() {	

    	}
    	public function doLogin() {

    		include("connection.php");

    	if (isset($_POST['username']) && isset($_POST['password']))
    	{
        $username= $_POST['username'];
        $password= $_POST['password'];
        $query = "SELECT *
                      FROM users
                      WHERE username = '".mysql_escape_string($username)."'
                      AND password = '".mysql_escape_string($password)."'";
        $result = mysql_fetch_array(mysql_query($query));
    	return 'yes';
}
else
{
        return 'no';
}

    	}
}
?>

I am not sure whether i am going correct, i am always getting the return value no though i enter the correct username and password.

Can anyone help me out.

flag

44% accept rate

7 Answers

vote up 0 vote down

Are you sure you don't store passwords hashed?

Also, don't use this ugly function, use bound parameters. It's cleaner and better.

Update:

no is returned whenever the following condition fails:

if (isset($_POST['username']) && isset($_POST['password']))

, no matter what's going on in MySQL.

Check that you set both variables.

link|flag
vote up 0 vote down

This bit:

$result = mysql_fetch_array(mysql_query($query));
return 'yes';

just returns yes no matter what the $result variable holds, try doing

if(empty($result)){
 return 'no'
}else{
return 'yes'
}
link|flag
vote up 3 vote down

if (isset($_POST['username']) && isset($_POST['password']))

This is the line which determines if you get yes or no. So that means that your not using post to get the variables from the form.

It has nothing to do with the query.

link|flag
Yes i am Flex and using remote object..... – theband May 27 at 9:28
vote up 0 vote down

If your getting "no" that is because this code fails to return true:

if (isset($_POST['username']) && isset($_POST['password']))

So...Did you give the input fields those exact names? Is the form really being posted?

link|flag
vote up 0 vote down

Your function doLogin() returns 'yes' if you have provided a username and a password, no matter what the database says...

link|flag
vote up 2 vote down

This would appear to be a HTML problem more than a query problem as the only thing that would make this class return 'no' are your $_POST variables.

Hopefully the basics of your form needs to look something like this in HTML:

<form method='post' action='filename.php'>
<input type='text' name='username' /><br />
<input type='password' name='password' />
</form>
link|flag
vote up 0 vote down

You should write the line

 $result = mysql_fetch_array(mysql_query($query));

as

 $res = mysql_query($query);
 if (!$res) {
     die "doLogin: " . mysql_error();
 }
 $user = mysql_fetch_array($res);

at least while testing this code. This way you can see if you have errors in your database calls.

link|flag

Your Answer

Get an OpenID
or

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