Re: [PHP-DB] Re: Showing various result from a mysql query

2005-10-05 Thread annA
Hi Juan, Micah is correct. You must try it in the Flash environment. As I was lazy and didn't want to check all your php, I created a simple test file from your mail: ?php Header(Content-type: application/x-www-urlform-encoded);?

Re: [PHP-DB] Re: Showing various result from a mysql query

2005-10-05 Thread annA
Hi Juan I'd put it at the beginning of the php script if it's always going to be sending its data to Flash, and certainly before ANY output: ?php header(Content-type:application/x-www-urlform-encoded); $conn = @mysql_connect(localhost, blah,blah23); header is pretty useful:

Re: [PHP-DB] Re: Showing various result from a mysql query

2005-10-04 Thread Juan Stiller
Hi anna, Thanks for the suggestion, but it didn't worked, when i try it on the browser, it ask me if i want to download , open the file. Any other sugg? --- annA [EMAIL PROTECTED] escribió: Hi Juan, I haven't read the list for a 'few' days so I'm sorry if you've been sweating

Re: [PHP-DB] Re: Showing various result from a mysql query

2005-10-04 Thread Micah Stevens
Yes, that sounds correct, when flash requests the page directly, it will realize it's URLEncoded (or should) and read the variables correctly. Your browser on the other hand isn't built to display this information, so it wants you to tell it where to save it. -Micah On Tuesday 04 October

[PHP-DB] Re: Showing various result from a mysql query

2005-10-03 Thread annA
Hi Juan, I haven't read the list for a 'few' days so I'm sorry if you've been sweating over this, but if you haven't yet solved it then make sure you send a Header(Content-type: application/x-www-urlform-encoded); before your echo $rString; annA