AS3 :: Php - Securely Pass Data From MySQL

Oct 1, 2011

I need to pass private data from MySQL to a flash file securely. I have a PHP script that is assigning variables on the server side - how do I pass this to flash without being available publically? I assume XML and an HTTP query string are out of the question because of security. What's the most secure way of doing this? Basically I have some file paths that I need to load into a music player - however, I don't want these URLs to be publicly known. I was hoping I could pass data directly to flash securely somehow.

View 2 Replies


Similar Posts:


Data Integration :: Securely Sending Connection String To Swf?

Oct 15, 2006

ok so when i need to connect a swf to some sort of data source on the server be it XML, a .NET DLL, a CFC or what ever so that i can load data from a database or what ever, everyone is always saying that i shouldn't hard code the connection string into my actionscript as anyone can get it and do malicious things with it. So how should i load the connection string into flash. if i put them on the server in an XML file or somthing like that then i still need to put a connection string into the actionscript in order to load in my main connection strings into the actionscript.

Basically i need to know how to load an external string into a swf without anyone else being able to get hold of that string for them selves. i am developing an app for somone and i need it to connect to a database and i need it to be secure. i have everything sorted except making the connection string to the database unstealable.

View 1 Replies

ActionScript 2.0 :: Pass Dynamic Variable To Mysql Db?

Aug 18, 2009

I've created a quiz with following variables: name phone email score.

The first three varibles are submitted by form and sent to db(these are 3 text fields).

A end of test I need to send the score (score is a dynamic text field which kept score throughtout quiz) to mysql db.The variable for score is also called "score"

Can this be done using loadVArs? should I be using "score.text" to ref score variable?

View 1 Replies

Data Integration :: MySQL Data Into Dynamic Text Field Without Escape Sequence

May 23, 2007

I got a music portfolio web site running PHP, MySQL and Flash. There's a page showing all the artists my client worked for and when you click on a song title, this title is passed as a variable to a PHP page then to a Flash page. The Flash page contains an actionscript music player which then looks for the right audio file in the database and plays the song. Everything works great except for the dynamic text field which displays the song title. If the song title contains an apostrophe or a single quote, the Flash dynamic text field then shows the apostrophe.[code]

View 1 Replies

ActionScript 3.0 :: Pass Multiple Variables From Flash To MySQL With PHP

Nov 12, 2009

When I pass a single variable (telephone) from Flash using the below it works fine

var xmlSaveLoader:URLLoader = new URLLoader();
xmlSaveLoader.load(new URLRequest("customer_insert.php?telephone="+teleph one));

I can read the variable in PHP using $key_telephone = $HTTP_GET_VARS[telephone];

and then run sql command to insert into table customers mysql_query("INSERT into customers (telephone) values ($key_telephone) ");

However, I have a problem and don't know how to pass multiple variables to PHP. I tried the following to pass a second variable (first_name)but it doesn't seem to work... xmlSaveLoader.load(new URLRequest("customer_insert.php?telephone="+teleph one+"&first_name="+first_name));

View 4 Replies

ActionScript 2.0 :: Pass Variables To Php Then The Php Runs A Query From The Mysql Database

Jul 28, 2011

I want to pass variables to php, then the php runs a query from the mysql database, and then sends back the new variable... I looked for tutorial, but nothin' seemed to work.

[Code]....

View 2 Replies

Data Integration :: Flash Data To Mysql Database

Feb 16, 2009

Can anyone help me with getting a message that is said in flash (like a game) go to a mysql database?

View 2 Replies

Data Integration :: Send And Receive Data From Mysql?

Jun 17, 2007

I would like flash to send and receive data from mysql.

To send data I would like to create 5 input fields, and then use a submit button.

Then to retrieve the data I would like to use the data grid or a dynamic text field.

View 6 Replies

ActionScript 3.0 :: Pass A Collection A Variables And Return A Result Based On The Filtered Results Of A Mysql Table

Nov 28, 2010

I'm trying to develop a simple as3 flash program that passes a collection a variables and returns a result based on the filtered results of a mysql table. Here is my as3 file:

[Code]...

No value is returned. If I replace with '$test4' and '$test5' with numbers such as 1 and 17, a value is returned. Where am I making a mistake?

View 1 Replies

Data Integration :: Load An Swf From MySQL /PHP?

Oct 1, 2007

I like to call for different SWF files from a link in a MySQL database to use in a Detailpage with PHP. Photos and text are no problem. The AC code is probably complicating things.

View 6 Replies

Professional :: Send Data To MySQL?

Oct 30, 2010

There an input textfield, name.text. There is a button with the following script,
 
send.onPress = function () {          getURL ("name.php", "_blank", "POST");    }The info will be send to MySQL database, name,  when pressing the button.
  
PHP---
 
<?// Receiving the variables.$name = $_POST['name'];
// Printing out the variables.print "Your name is ". $name . ".";
?>
 
I am not able to perform the task.

View 1 Replies

Php :: Get Some Data From PHP/MySQL And Send It To Flex?

Jan 1, 2010

I'm trying to get some data from PHP/MySQL and send it to Flex..Let's say That my object in Flex would look like this:

package some.package.VO {
[RemoteClass(alias="VOPerson")]
[Bindable]
public class VOPerson {

[code]....

In my case, personDetails is an Array, and in theory, it could be some other object... But is it really necessary to make it an object? I do not intend to use that data nowhere else except within my VOPerson class. It is some associative array, and I can easily transform it to another object, but there will be lots of similar situations in my app, so I would like to avoid making unnecessary (value) objects if there is no need for it...

View 1 Replies

How To Get Data From MySQL Database Into Flash

Oct 24, 2010

I am reading one tutorial :- But I can't understand what is "Gateway.php" and all such things. I am a beginner in Flash.

View 2 Replies

ActionScript 2.0 :: Submit Data Into MySQL?

Aug 28, 2010

I don't like cookies. For saving data, submitting scores, etc. I'd like everything to be submitted into user's accounts in a mySQL database. I can do all that very easily with PHP, but how would I make it worth with flash/actionscript (I mainly/am used to working with AS2, but I have Flash CS5 now, so I can work with AS3 if necessary or more efficient). I have no idea how to mix actionscript with other languages (other than using a link with get variables, but, aside from the obvious reasons why that won't work, I'd prefer, if possible, to transmit data without any page reloading).

Are there any security holes or downsides I should consider before making a flash login system? I'd like to allow users to login if they wish to submit their score or save their data (mainly for users playing on a third-party site).

View 1 Replies

ActionScript 2.0 :: Receive Data From Mysql By Php?

Jun 21, 2011

i'm trying to connect Action Script 2.0 Scrollpane to get data from php and mysql... my problem is in the action script 2.0 i'm trying to recieve data from mysql by php, Here is my php code :

[Code]....

and my data base is working 100%

i need to display the result in a ScrollPane Object In AS 2.0

View 0 Replies

Gets Data From MYSQL And Outputs That Into A Datagrid

May 3, 2010

I've scripted a connection to PHP that gets data from MYSQL and outputs that into a datagrid.When I encrypt the swf with Ameyata SWF Encrypt 5.0, and upload it to my webhost, it looks fine. I can click the header of the datagrid (that sorts the data), but when I click on a field of the datagrid, it just freezes and my datagrid is not usable. I'd have to reload the page in order to do something with the datagrid again. But the problem with the field remains.It works when I'm not encrypting the swf.URL...

View 2 Replies

ActionScript 2.0 :: Assigning MySQL Data?

Feb 3, 2005

I have a move clip called 101.

[Code]...

assigned to 101. Inside of 101 I have dynamic text fields with the var names of price, fee, and state.I have a movieclip 102 that is exactly like 101. What I need to know is, how can differentiate 101 from 102 so that when the db data comes in that 101 and 102 display different info?Also, I can't change the var names. They must stay as price, fee, and state in both movieclips.

View 1 Replies

ActionScript 3.0 :: Readback Data From MySQL With PHP?

Jan 27, 2010

Does anyone knows how do I readback data from mySQL with PHP?

E.g: I've a registration of students data and when I click on individual, flash reads back the particular student's data for me to edit.

View 1 Replies

ActionScript 2.0 :: Use Loadvariables To Get Data From MySQL Using PHP?

Oct 15, 2010

I use loadvariables to get data from mySQL using PHP and up to Flash. Flash gets the data flawlessly. Now one of the data I load into Flash is a path to an image.

My problem is, when I check the imgVar variable, it telles me, its value is: images/news/001.jpg

Now When I use the AS:
loadMovie(imgVar, blanker);

it does nothing (blanker is the movie clip I load the picture to).

When I use the AS:
loadMovie("images/news/001.jpg", blanker);
it shows the picture...

My other question: If I solve this problem, how Can I resize the externally loaded image by just setting either the height or width and doing the resize so that it won't deform my image.

View 4 Replies

ActionScript 2.0 :: Assigning The MySQL Data?

Feb 3, 2005

I have a move clip called 101.

onClipEvent (load) {
loadVariables("you.php", this, "GET");
}

assigned to 101. Inside of 101 I have dynamic text fields with the var names of price, fee, and state.I have a movieclip 102 that is exactly like 101. What I need to know is, how can differentiate 101 from 102 so that when the db data comes in that 101 and 102 display different info?Also, I can't change the var names. They must stay as price, fee, and state in both movieclips.

View 1 Replies

ActionScript 2.0 :: Load Data From Mysql To Xml To Flash Using Php?

May 18, 2009

I am trying to load data from mysql to xml to flash using actionscript and php. Im doing something wrong but not sure what.Basically, my php file (latestnews.php) looks like this

Code:
<?php

header("Content-type: text/xml");

$host = "host";
$user = "user";
$pass = "password";[code].......

this is placed in the same frame number as the dynamic text fields but on a seperate layer. The dynamic text fields are:

Title_txt
Comments_txt
Date_txt

There is no output error but nothing is showing up. The file is using actionscript 2.0 and wondering if the actionscript i am using is write for that format?

View 14 Replies

Adding Data To Local Mysql Database Using Php

Aug 30, 2010

I'm making a login script and adding the data to my local mysql database using php.it works as long as I browse in my browser to localhost/ flash/ movie.swf but if I just open the folder and run the .swf file it doesnt work

View 2 Replies

Data Integration :: Flash/MySQL Stand Alone App?

Jun 27, 2006

I need to create a stand alone desktop app that uses a database. It's been a long time since I did any VB work, and I need to learn Flash for another job anyway...is there any reason why I shouldn't use Flash for the desktop app?

View 1 Replies

Data Integration :: MySQL PHP Flash And The Combo Box?

Mar 24, 2007

I'm in the process of expanding an admin area for a website (coded with PHP and MySQL) and would like to get my client list into a flash combo box. the main columns I would need would be the account and the company name... In a regular example would be

<select name='client'>
<option value='2460'>Client 1</option>
<option value='2461'>Client 2</option>
</select>

If I could get this I should be away...

View 2 Replies

Data Integration :: Flash Php Mysql Combo Box?

Feb 23, 2007

ive managed to get info from a mysql database into flash in a combo box. i have a text field and i want it to load in the corresponding data when a new title is selected in the combo box.

View 1 Replies

Data Integration :: Populating Combo Box From MySQL Via PHP?

Jan 23, 2007

I would like load values from mySQL to select from in a combobox. I would love to do this the most simple way w/o php, but that

View 3 Replies

ActionScript 3.0 :: Fill Listbox From Mysql Data?

Apr 8, 2009

i want to fill a listbox with data from a MySql table.  the code ive gotten working is for static data from an xml file.  here it is:
 
var options:XML = new XML();
options.ignoreWhitespace = true;
var loader:URLLoader = new URLLoader(new URLRequest("fillRegions.xml"));

[Code]....

this creates an echod file that looks just like the above xml example.  so, how do i change my original AS3 code to pull data from this php file rather then the xml file?

View 1 Replies

ActionScript 3.0 :: Flash - PHP - MySQL Data Exchange

Nov 6, 2010

I've been struggling with this for a few weeks, but I still can't get it right, and all the info I found is too ambiguous or uses AS2. What I want to do is to retrieve info from a MySQL database, using PHP, and send it to Flash; and in the other way, input info into the database from a Flash form. I want this to make a series of Flash tests for my website. show me a simple example code (on both PHP and Flash) of how to exchange data? PD: I know how to work with databases on PHP, so the only PHP code i need to see is the php-flash communication part.

View 3 Replies

ActionScript 3.0 :: Getting Data From Mysql Database For Use In Whole Project?

Jun 20, 2011

I can get the data from the mysql database into the flash onDataLoad function but cant get it outside the function, and that is what i need to malipulate other data already in the project (update it)

var myLoader:URLLoader = new URLLoader()  myLoader.dataFormat = URLLoaderDataFormat.VARIABLES  myLoader.load(new URLRequest("http://localhost/flash_php_mysql/FormData.php?"))

[code].....

View 6 Replies

ActionScript 2.0 :: Sending Data From Flash To Mysql?

Jul 13, 2009

so i managed to get data from mysql through php through xml and output it in flash by dynamic textfield. So i got a value from mysql, an integer, modified it with flash using commands, and want to send it to php and overwrite the old integer and save

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved