Flasher Archive

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


Subject: RE: FLASH: Flash 4.0 and database connections
From: Matthew K Walter
Date: Wed, 23 Jun 1999 01:30:47 +0100

Interesting. It looks like it will work...but until I get my two year old
off my lap...it's finally "after hours" , I won't be able to try it!

Thanks!

+Matt

-----Original Message-----
From: owneratshocker [dot] com [owneratshocker [dot] com]On">mailto:owneratshocker [dot] com]On Behalf Of Robert
Koberg
Sent: Tuesday, June 22, 1999 5:06 PM
To: flasheratshocker [dot] com
Subject: Re: FLASH: Flash 4.0 and database connections


> Very cool. What's the syntax for pulling it from the URL generated by a
> server side script?
>

The difference (I think) would be instead of POST, use GET. You would also
need to generate the URL string to send to the server. My old example using
POST:
on (release)
set variable: "nname" = nname
set variable: "pword" = pword
loadVariables: ("http://209.233.20.147/testweb/toTheDB_flash.asp" ,1,
vars=POST)
Go To and Play(10)
end on

So my example using GET and a querystring would be (I am guessing...):
on (release)
set variable: "nname" = nname
set variable: "pword" = pword
loadVariables: ("http://209.233.20.147/testweb/toTheDB_flash.asp?nname="
& nname & "&pword=" & pword) ,1,vars=GET)
Go To and Play(10)
end on


In the ASP you would use Request.Querystring("xxx") instead of
Request.Form("xxx")


------------------------------------------------------------------------
To UNSUBSCRIBE send: unsubscribe flasher in the body of an
email to list-manageratshocker [dot] com. Problems to: owneratshocker [dot] com
N.B. Email address must be the same as the one you used to subscribe.
For info on digest mode send: info flasher to list-manageratshocker [dot] com



------------------------------------------------------------------------
To UNSUBSCRIBE send: unsubscribe flasher in the body of an
email to list-manageratshocker [dot] com. Problems to: owneratshocker [dot] com
N.B. Email address must be the same as the one you used to subscribe.
For info on digest mode send: info flasher to list-manageratshocker [dot] com


Replies
  Re: FLASH: Flash 4.0 and database connec, Robert Koberg

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