Connecting Tech Pros Worldwide Forums | Help | Site Map

Actionscript 3 with PHP

Newbie
 
Join Date: Oct 2007
Posts: 6
#1: Dec 28 '07
I am trying to create an authentication using flash and AS3 as the underlying code using PHP as the server side scripting and mySQL to store the passwords. As I am a newbie I decided to start practicing using AS2 and tried to make the whole thing work. I could not get the flash interface to connect to the PHP to validate the database. I know that my PHP code worked because I can run a test through the browser and it would connect to the mySQL database. I decided then to opt to convert it to AS3. I could not get it to work is AS3 neither. Doing so changed the code so that I would have the PHP code holding the username and password as a test but I could not get this to work. It seems to me that my flash interface isnt connecting to the php script.

Here are my codes....any help would be great....I also enclose the error message I am now receiving which I do not understand why.


Expand|Select|Wrap|Line Numbers
  1. mcLogin.addEventListener(MouseEvent.CLICK, onClick);
  2.  
  3. function onClick(event:MouseEvent):void
  4. {
  5.     var variables = new URLVariables();
  6.     variables.username = tUsername.text;
  7.     variables.password = tPassword.text;
  8.  
  9.     var _request:URLRequest = new URLRequest("loginCheck.php");
  10.     _request.data = variables;
  11.     _request.method = URLRequestMethod.POST;
  12.  
  13.     var _loader:URLLoader = new URLLoader()
  14.     _loader.dataFormat = URLLoaderDataFormat.VARIABLES;
  15.     _loader.addEventListener(Event.COMPLETE, sendComplete);
  16.     _loader.addEventListener(IOErrorEvent.IO_ERROR, sendIOError);
  17.     _loader.load(_request);
  18. }
  19.  
  20. function sendComplete(event:Event):void
  21. {
  22.      tError2.text = "I'm sorry, it didnt load";
  23. }
  24.  
  25. function sendIOError(event:IOErrorEvent):void
  26. {
  27.     tError.text = "I'm sorry, it didnt load";
  28. }
[PHP]<?php
session_start();
$username = $_POST['username'];
$password = $_POST['password'];


if($username == 'admin' && $password == 'admin123'){
$_SESSION['loggedIn'] = true;
echo 'login=success';
}else{
echo 'login=failure';
}
?> [/PHP]


Error: Error #2101: The String passed to URLVariables.decode() must be a URL-encoded query string containing name/value pairs.
at Error$/throwError()

I dont have any ampersand so I dont know why this is thrown..

Any help would be great..

Thanks

Newbie
 
Join Date: Jul 2008
Posts: 1
#2: Jul 14 '08

re: Actionscript 3 with PHP


Try to change the path to php file to the full url like http://www.[domain].com/file.php
Newbie
 
Join Date: Jun 2009
Posts: 1
#3: Jun 10 '09

re: Actionscript 3 with PHP


I am having the same problem. Did you ever figure out a solution? I've been banging my head all week getting this to work. It seems as though the php script I have is not being executed. In my Event.COMPLETE event handler I can inspect the event.target.data and what I get back is the entire php script! Please help!
gopan's Avatar
Member
 
Join Date: Apr 2009
Location: Kochi (COK), India
Posts: 41
#4: Aug 13 '09

re: Actionscript 3 with PHP


Quote:

Originally Posted by porksoda View Post

I am having the same problem. Did you ever figure out a solution? I've been banging my head all week getting this to work. It seems as though the php script I have is not being executed. In my Event.COMPLETE event handler I can inspect the event.target.data and what I get back is the entire php script! Please help!

Are you sure that your server executes php scripts??
Try the url to php file in a browser...
Member
 
Join Date: May 2009
Posts: 81
#5: Aug 17 '09

re: Actionscript 3 with PHP


Whenever you make a PHP API for something, you should always craft manual requests and ensure the script itself is responding as expected. My guess is that your problem comes from server side. Do a few trace() calls and check the contents of the page you receive. If that doesn't help you, then get friendly with telnet or one of those fancy request crafting addons for FFox.
Reply