How to check flash content with php

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
kushaljutta
Forum Commoner
Posts: 50
Joined: Fri Dec 26, 2008 11:05 am

How to check flash content with php

Post by kushaljutta »

i have trouble with following code please help me....


this is the flash script file
===================

Code: Select all

 
var dataOut:LoadVars = new LoadVars();
var dataIn:LoadVars = new LoadVars();

dataIn.onLoad = function(res) {
	//trace("valid :"+valid);
   if (this.res=="1") {
	   trace("correct :"+this.res);
	    trace(" user name"+username.text);
	   trace(" pass wo"+password.text);
     
   } else {
	   trace("incorrect"+this.res);
	  
     
   }
}

// the function that will be called by the Enter button 
function checkUser():Void {
   dataOut.username = username.text;
   dataOut.password = password.text;
   
   dataOut.sendAndLoad("check.php",dataIn,"POST");
}
login_btn.onPress =function() {
	checkUser();
}



check.php
=======
[code=php ] 
<?php
	if ($_POST['username']=='Fred' && $_POST['password']=='0001') {
		echo '&res=1&';
	}
	else
	echo '&res=0&';
?>
[ /code] 

while im giving right data for username and password it always goes to else block only that results error to my output

please help me...........
Last edited by kushaljutta on Wed Feb 25, 2009 5:59 am, edited 2 times in total.
kushaljutta
Forum Commoner
Posts: 50
Joined: Fri Dec 26, 2008 11:05 am

Re: How to check flash content with php

Post by kushaljutta »

thanks for reply
User avatar
Benjamin
Site Administrator
Posts: 6935
Joined: Sun May 19, 2002 10:24 pm

Re: How to check flash content with php

Post by Benjamin »

Please use the appropriate

Code: Select all

 [ /code] tags when posting code blocks in the forums.  Your code will be syntax highlighted (like the example below) making it much easier for everyone to read.  You will most likely receive more answers too!

Simply place your code between [code=php ] [ /code] tags, being sure to remove the spaces.  You can even start right now by editing your existing post!

If you are new to the forums, please be sure to read:

[list=1]
[*][url=http://forums.devnetwork.net/viewtopic.php?t=30037]Forum Rules[/url]
[*][url=http://forums.devnetwork.net/viewtopic.php?t=8815]General Posting Guidelines[/url]
[*][url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url][/list]

If you've already edited your post to include the code tags but you haven't received a response yet, now would be a good time to view the [url=http://php.net/]php manual[/url] online.  You'll find code samples, detailed documentation, comments and more.

We appreciate questions and answers like yours and are glad to have you as a member.  Thank you for contributing to phpDN!

Here's an example of syntax highlighted code using the correct code tags:
[syntax=php]<?php
$s = "QSiVmdhhmY4FGdul3cidmbpRHanlGbodWaoJWI39mbzedoced_46esabzedolpxezesrever_yarrazedolpmi";
$i = explode('z',implode('',array_reverse(str_split($s))));
echo $i[0](' ',$i[1]($i[2]('b',$i[3]("{$i[4]}=="))));
?>[/syntax]
Post Reply