Actionscript 3 with PHP

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hott5hotj
    New Member
    • Oct 2007
    • 6

    Actionscript 3 with PHP

    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.


    Code:
    mcLogin.addEventListener(MouseEvent.CLICK, onClick);
    
    function onClick(event:MouseEvent):void
    {
        var variables = new URLVariables();
        variables.username = tUsername.text;
        variables.password = tPassword.text;
        
        var _request:URLRequest = new URLRequest("loginCheck.php");
        _request.data = variables;
        _request.method = URLRequestMethod.POST;
        
        var _loader:URLLoader = new URLLoader()
        _loader.dataFormat = URLLoaderDataFormat.VARIABLES;
        _loader.addEventListener(Event.COMPLETE, sendComplete);
        _loader.addEventListener(IOErrorEvent.IO_ERROR, sendIOError);
        _loader.load(_request);
    }
    
    function sendComplete(event:Event):void
    {
         tError2.text = "I'm sorry, it didnt load";
    }
    
    function sendIOError(event:IOErrorEvent):void
    {
        tError.text = "I'm sorry, it didnt load";
    }
    [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.de code() 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
  • rdourado
    New Member
    • Jul 2008
    • 1

    #2
    Try to change the path to php file to the full url like http://www.[domain].com/file.php

    Comment

    • porksoda
      New Member
      • Jun 2009
      • 1

      #3
      same problem

      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.da ta and what I get back is the entire php script! Please help!

      Comment

      • gopan
        New Member
        • Apr 2009
        • 41

        #4
        Originally posted by porksoda
        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.da ta 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...

        Comment

        • unauthorized
          New Member
          • May 2009
          • 81

          #5
          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.

          Comment

          Working...