Well definately no expert but this is what I have found works.

In your amfphp service, setup your function calls to use an array ala:

function authenticate($lognfo){
$username = $lognfo[0];
$password = $lognfo[1];

etc.

Then in your app setup your call to the function with an array of params.

click="getAuth('MySQL_Login.authenticate',[txtUID.text,txtPwd.text])"


Thats gotten me going here, I like you , have not been able to send a 
string of params so while this seems to work its probably not ideal.

one of the better explanations of flex2<->amfphp I have found is at 
http://hasan.otuome.com/ under tuts, check out the flexible guestbook tuts.

hth

Impudent1
LeapFrog Productions


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to