I downloaded a flash login setup and have been trying to revise it to my specific needs.
I have the login function working in that when they enter a valid username and password, they are directed to the correct frame in flash.
What I want to do is for a specific field record from my Access database to be diplayed on that page. Let's say, I have a field called "PetName"
Right now, the coldfusion setup is set to give a thumbs up or down as far as access. Here is the code:
Code:
SELECT *
FROM Clients
WHERE Customer = '#form.usr#'
AND Secret = '#form.pw#'
&CFresponse1=ok&
&CFresponse1=bad&
What would I need to add to this code for it to send the data from the field "PetName" along with the ok or bad response?
Also, from within flash, what code would I need to display that record? Something to this affect:
loadVariables("f22clientlogin.cfm", _root.form);
Name = _root.form.PetName;
This flash is setup so that on the root level, various movieclips are loaded throughout the process, hence the root level references.
Thanks,
DaveMore Information:
- If you did the loading and saving tutorials and have a basic understanding on how to handle database records with php, you can manage to extend the guestbook to whatever you like
- In this lesson of the ColdFusion tutorial, you have learned how to connect to a database to insert and select records and to use this ability to create registration and login forms
- This course also demonstrates how to use Dreamweaver to link a variety of multimedia file types - from Flash to Java to RealAudio - to Web pages
- What am I doing wrong here on passing a string and also how could I pass the sting with single quotes in it? On my CFM page:
- Using the HTTP methods GET and POST, Macromedia Flash can pass variables to ColdFusion templates just like any other Web page
- NET to Flash! This is a simple but powerful video because you will now know how to pass ASP
- 6 posts - 5 authors - Last post: Dec 19, 2008In turn this queries the database based on the information passed to it and returns the recordset to the Flash movie
- Create a new page named "show" and ensure it has an extension of cfm
- cfm" page that "display" and "keyword" aren't passed into it? Same
More:
Bookmarks