Flasher Archive

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


Subject: RE: FLASH: Saving Variables into Database
From: Jeff Bradshaw
Date: Tue, 25 Jul 2000 01:52:52 +0100

If I create an input form in Flash then use the Load Variable funtion to
send the field data to a ColdFusion page to to a database insert (see
previous message below), how can I do this securely using https.

My thought was that if I launch the html page which fires off the swf file
securely using https then the data being sent to Cold Fusion will get there
secure.

Example https://www.mysite.com/launchswffile.html

the launchswffile.html page is the page which launches my flash input from
which I want to be secure when sending the form data to my coldfusion insert
page.

Will this work ??

Jeff Bradshaw

-----Original Message-----
From: Paul Koch [paulatinterpaul [dot] nl (mailto:paulatinterpaul [dot] nl)]
Sent: Tuesday, July 18, 2000 12:27 AM
To: flasheratchinwag [dot] com
Subject: Re: FLASH: Saving Variables into Database

Action of your submit button in Flash:

Load Variables ("http://www.yoururl.com/insert.cfm", 0, vars=GET)

Your insert Coldfusion page (insertpage.cfm)

<cfquery name="queryname" datasource="datasource" dbtype="ODBC">
INSERT INTO table(fieldname1, fieldname2)
VALUES ('#URL.fieldname1#', '#URL.fieldname2#')
</cfquery>

You can pass a variable back to the flashmovie by adding:

&sent=done

You can check this in your movie, for example: if sent=done then....

Hope this helps.


flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
flashforward2000 and the Flash(tm) Film Festival
July 24-26, 2000, NEW YORK CITY, Hammerstein Ballroom
www.flashforward2000.com
Produced by United Digital Artists and lynda.com
Sponsored by Macromedia, Adobe Systems, Fusion, Inc, AtomFilms,
shockwave.com and Electric Rain.
1.877.4.FLASH.4 or (1.805.640.6679 outside the US and Canada)
Register before June 30 and save $200!!-- www.flashforward2000.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpatchinwag [dot] com


Replies
  RE: FLASH: Saving Variables into Databas, Paul Roper

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