Re: [Flashcoders] LoadVars and SQL Query issue

2008-02-02 Thread Kevin Baker
attacks before you waste too much more development time trying to resolve this issue. Pete -Original Message- From: [EMAIL PROTECTED] on behalf of Omar Fouad Sent: Sat 2/2/2008 1:07 AM To: Flash Coders List Subject: [Flashcoders] LoadVars and SQL Query issue I am doing an applicat

RE: [Flashcoders] LoadVars and SQL Query issue

2008-02-02 Thread Pete Hotchkiss
: [Flashcoders] LoadVars and SQL Query issue I am doing an application where I'm writing some classes that sends queries to a php file by using LoadVars.send(). var toSend:LoadVars = new LoadVars(); var myQuery:String = "select * from users where Name = 'Omar Fouad' "; toSend.q

Re: [Flashcoders] LoadVars and SQL Query issue

2008-02-01 Thread Juan Pablo Califano
t;Omar Fouad" <[EMAIL PROTECTED]> To: "Flash Coders List" Sent: Friday, February 01, 2008 11:07 PM Subject: [Flashcoders] LoadVars and SQL Query issue I am doing an application where I'm writing some classes that sends queries to a php file by using LoadVars.send(). va

Re: [Flashcoders] LoadVars and SQL Query issue

2008-02-01 Thread Dave Mennenoh
You can escape() the string in Flash, then use urldecode() on it in PHP. Dave - Head Developer http://www.blurredistinction.com Adobe Community Expert http://www.adobe.com/communities/experts/ ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.c

[Flashcoders] LoadVars and SQL Query issue

2008-02-01 Thread Omar Fouad
I am doing an application where I'm writing some classes that sends queries to a php file by using LoadVars.send(). var toSend:LoadVars = new LoadVars(); var myQuery:String = "select * from users where Name = 'Omar Fouad' "; toSend.query = myQuery; // tracesselect * from users where Name = 'Om