Flasher Archive

[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]


Subject: RE: FLASH: PHP and Flash
From: TR Henigson
Date: Thu, 21 Sep 2000 09:15:14 +0100

One other important thing to remember is that all variable values should be
passed through the URLENCODE() function so the example actually looks more
like:
<?PHP
$return="name=".urlencode($name);
$return.="&age=".urlencode($age);
$return.="&favcolor=".urlencode($favcolor);
echo $return;
?>

In the example you provided, the urlencode() is of course not necessary.
However, its use is demanded in the generic case as above where the values
are variable.

Ted Henigson


> -----Original Message-----
> From: owneratchinwag [dot] com [owneratchinwag [dot] com]On">mailto:owneratchinwag [dot] com]On Behalf Of Glen
> Rhodes
> Sent: Monday, September 18, 2000 11:02 AM
> To: flasheratchinwag [dot] com
> Subject: RE: FLASH: PHP and Flash
>
>
> The main thing to remember is, ask them to make sure they write their
> scripts so that data is passed back to you in an HTML free page (no tags),
> that consists only of variable=data pairs, separated by &
>
> name=joe&age=33&favcolor=blue
>
> Etc.. like that. And, when you submit data to them, tell them that you
> sending data is exactly the same method that an HTML form is
> submitted.. so
> then they should know how to read the data you send them.
>
> ------------------
> Glen Rhodes
> dot com Entertainment Group Inc.
> Tel: (905) 337-8524 x224
> Fax: (905) 337-8630
> www.dceg.com
>
> -----Original Message-----
> From: owneratchinwag [dot] com [owneratchinwag [dot] com]On">mailto:owneratchinwag [dot] com]On Behalf Of Steve
> Couture
> Sent: Monday, September 18, 2000 1:21 PM
> To: flasheratchinwag [dot] com
> Subject: FLASH: PHP and Flash
>
>
> Hi Flashers,
>
> I Actually work on a flash application that should recived
> data from a DataBase usig PHP3. I know nothing about php3... Some other
> people work with me on this side... But I want to know whats the
> best way to
> get variables from a DataBase and PHP3 to Flash... What should I ask to
> the other programmer ? What they have to do and what I have to do??
>
> Thanks!
>
> Steve
>
>
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> NudeGuru.com is proud to sponsor the Flasher list
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> IT'S THE ART OF MONEY, HONEY!
> Tips and Advice from some of the most popular Flash
> artists + industry power-brokers on how to hold onto
> your rights, negotiate contracts and get full value
> for your work.http://www.nudeguru.com from Franke James
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> To unsubscribe or change your list settings go to
> http://www.chinwag.com/flasher or email helpatchinwag [dot] com
>
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> NudeGuru.com is proud to sponsor the Flasher list
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> IT'S THE ART OF MONEY, HONEY!
> Tips and Advice from some of the most popular Flash
> artists + industry power-brokers on how to hold onto
> your rights, negotiate contracts and get full value
> for your work.http://www.nudeguru.com from Franke James
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> To unsubscribe or change your list settings go to
> http://www.chinwag.com/flasher or email helpatchinwag [dot] com
>


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
NudeGuru.com is proud to sponsor the Flasher list
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
IT'S THE ART OF MONEY, HONEY!
Tips and Advice from some of the most popular Flash
artists + industry power-brokers on how to hold onto
your rights, negotiate contracts and get full value
for your work.http://www.nudeguru.com from Franke James
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpatchinwag [dot] com


Replies
  RE: FLASH: PHP and Flash, Glen Rhodes

[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]