[PHP] PHP and Flash Remoting

2005-12-05 Thread Yaswanth Narvaneni
Hi!

I am using amfchat from tufat.com, and wanted to integrate it with my
site's session data. amfchat uses flash remoting to communicate to the
server.

It initally sends

sessionid=time() to gateway.php

gateway.php starts a session using:

function session($name=false){
if($name){
$prev_name = session_name();
if($prev_name != $name){
session_name($name);
}
}
@session_start();
}

And accesses the session variables in another function thats called
using flash remoting.
as $_SESSION['username'];


I wanted to replace all this and I have made gateway.php start a
session as follows:
$prev_name = session_name();
session_start();

But I am not able to access my session variables in the functions
using $_SESSION['login']

This is the function I have modified:

$session_name = session_name();
session_start();
$username=$_SESSION['login'];
$password=$_SESSION['passwd'];

$result['description'] = User= $username, Password: $password,
Session: $session_name

When flash prints the 'result' arrary, the output for description is as follows

User= , Password: , Session: PHPSESSID

Can any one tell me if I am making a mistake some where or give me a solution?

Regards,
Yaswanth

--
In theory there is no difference between theory and practice.
In practice there is. -- Fortune Cookie

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] php and flash

2004-12-15 Thread Dustin Krysak
Can anyone point to some good tutorials on using PHP with flash? I am 
mostly interested in displaying info from a database in the flash 
movie, as well as loading movies and pictures into the flash file 
(referenced in the database).

thanks!
d
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] php and flash

2004-12-15 Thread daniel
 Can anyone point to some good tutorials on using PHP with flash? I am
 mostly interested in displaying info from a database in the flash
 movie, as well as loading movies and pictures into the flash file
 (referenced in the database).

 thanks!


Yes dude, I have been implementing data via mysql using Flash Remoting and
another extensioncalled PHPObject, both use php as a server for executing php 
methods which
does the sql queryand returns an array back to flash which is serialized in 
very funky.

www.amfphp.org

http://ghostwire.com/go/28

PHPObject is updated regularly, amfphp ran oujt of steam possibly coz of
legal matters withmacromedia the punks, its ok to support highend languages but 
when someone
has the balls tocome up with an alternative for PHP all hell breaks loose :|

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] php and flash

2004-12-15 Thread daniel
 On Wed, 15 Dec 2004 18:40:17 -0800, Dustin Krysak
 [EMAIL PROTECTED] wrote:
 displaying info from a database in the flash movie

 If you mean like graphs..

 http://www.infosoftglobal.com/FusionCharts/




There is also the option of generating xml using pear XML_Tree and loading
the php script in asyou would with xml.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] php and flash

2004-12-15 Thread daniel
 Can anyone point to some good tutorials on using PHP with flash? I am
 mostly interested in displaying info from a database in the flash
 movie, as well as loading movies and pictures into the flash file
 (referenced in the database).

 thanks!


Yes dude, I have been implementing data via mysql using Flash Remoting and
another extensioncalled PHPObject, both use php as a server for executing php 
methods which
does the sql queryand returns an array back to flash which is serialized in 
very funky.

www.amfphp.org

http://ghostwire.com/go/28

PHPObject is updated regularly, amfphp ran oujt of steam possibly coz of
legal matters withmacromedia the punks, its ok to support highend languages but 
when someone
has the balls tocome up with an alternative for PHP all hell breaks loose :|

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] php and flash

2004-12-15 Thread Greg Donald
On Wed, 15 Dec 2004 18:40:17 -0800, Dustin Krysak
[EMAIL PROTECTED] wrote:
 displaying info from a database in the flash movie

If you mean like graphs..

http://www.infosoftglobal.com/FusionCharts/


-- 
Greg Donald
Zend Certified Engineer
http://gdconsultants.com/
http://destiney.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] PHP and FLASH progress bar

2004-03-01 Thread Ryan A
Hi,
This is an older problem that I posted to the list and since the solutions
posted didnt really work,
I started searching for a different solution.

Required result:
After each email show the client a message:
eg:
Sent email #1
Sent email #2
etc

The message should display after each email which is easily enough done via
simple echo but the problem
is that all browsers wait and display a crapload of sent email #x instead
of one by one

I tired Andre's solution of flush() but like its documented in the manual,
its giving problems on NN and
tiny problems on IE :-(I am sure many of you more seasoned php guys must
have faced a problem
like this and maybe used a flash progress bar?
If yes, any chance of sharing that file with me or giving me a URL to one
such file which interacts with
the php sending mail script?

Have been searching google for the past 30 mins...will continue to search,
but have not made this myself
as I dont know flash well enough

Any ideas?

Thanks,
-Ryan

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] php and flash chat program

2003-06-10 Thread Russell P Jones
The best way I can see to answer this would be to use the body
onUnload=function() in javascript and just have that function run what
you need. You could have php put the screen name into some variable in the
javascript and then onUnload (the user either closes the browser or
changes the page) run the function that tells whatever your delete
username program is to remove that user from the list



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] php and flash chat program

2003-06-10 Thread Awlad Hussain
How about using session???

- Original Message - 
From: Russell P Jones [EMAIL PROTECTED]
To: Matt Palermo [EMAIL PROTECTED]
Cc: 'PHP General' [EMAIL PROTECTED]
Sent: Tuesday, June 10, 2003 3:11 PM
Subject: RE: [PHP] php and flash chat program


 The best way I can see to answer this would be to use the body
 onUnload=function() in javascript and just have that function run what
 you need. You could have php put the screen name into some variable in the
 javascript and then onUnload (the user either closes the browser or
 changes the page) run the function that tells whatever your delete
 username program is to remove that user from the list



 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] php and flash chat program

2003-06-09 Thread Matt Palermo
Hey, I need some advice if anyone is willing to offer it.  I have a chat
program I am working on.  The interface is built in flash, and it uses
PHP also.  There is a main chat area where the users type their messages
back and forth, and there is also a smaller area which displays all of
the currently logged-in users.  When a user logs into the chat room, it
adds their nickname to a users.txt file, which creates a list of all the
online users and is then displayed in the chat page.  I also have a
logoff button that will search for the users nickname in the users.txt
file and remove it, so that it won't be displayed in the chat window
anymore.  The only problem I am having is that if a user doesn't click
on the logoff button and instead just closes the internet window or
shuts off their computer, then their nickname will still appear in the
list of users, since it wouldn't get a chance to be removed by the
logoff button.  I'm not sure how to accomplish this, I would appreciate
any help you can offer me.  Thanks a lot.
 
Matt


Re: [PHP] php and flash chat program

2003-06-09 Thread Richard Baskett
What I normally do in these situations is have two fields separated by tabs
or commas or whatever you want.  The first field is the username and the
second field is a timestamp.

The timestamp can be updated every time the user writes a message, since Im
sure you are logging also..  or after, say an hour, have their name removed
from the list, although this might make them have to log back in :)

Every time someone logs into the chat go through the list getting rid of any
usernames older than an hour or any other time.  And everytime someone logs
off do the same thing.. or if you get a lot of activity, just go through the
list when people logoff.

Cheers!

Rick

If you're going to be able to look back on something and laugh about it,
you might as well laugh about it now. - Marie Osmond

 From: Matt Palermo [EMAIL PROTECTED]
 Date: Mon, 9 Jun 2003 17:19:31 -0400
 To: [EMAIL PROTECTED]
 Subject: [PHP] php and flash chat program
 
 Hey, I need some advice if anyone is willing to offer it.  I have a chat
 program I am working on.  The interface is built in flash, and it uses
 PHP also.  There is a main chat area where the users type their messages
 back and forth, and there is also a smaller area which displays all of
 the currently logged-in users.  When a user logs into the chat room, it
 adds their nickname to a users.txt file, which creates a list of all the
 online users and is then displayed in the chat page.  I also have a
 logoff button that will search for the users nickname in the users.txt
 file and remove it, so that it won't be displayed in the chat window
 anymore.  The only problem I am having is that if a user doesn't click
 on the logoff button and instead just closes the internet window or
 shuts off their computer, then their nickname will still appear in the
 list of users, since it wouldn't get a chance to be removed by the
 logoff button.  I'm not sure how to accomplish this, I would appreciate
 any help you can offer me.  Thanks a lot.
 
 Matt
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] php and flash chat program

2003-06-09 Thread Matt Palermo
I realize that this can be done, but I would like to make it as instant
as possible.  I don't want to wait very long for the user to be removed
from the online users list.  Got any other ideas?  Thanks.

Matt

-Original Message-
From: Richard Baskett [mailto:[EMAIL PROTECTED] 
Sent: Monday, June 09, 2003 6:15 PM
To: Matt Palermo; PHP General
Subject: Re: [PHP] php and flash chat program

What I normally do in these situations is have two fields separated by
tabs
or commas or whatever you want.  The first field is the username and the
second field is a timestamp.

The timestamp can be updated every time the user writes a message, since
Im
sure you are logging also..  or after, say an hour, have their name
removed
from the list, although this might make them have to log back in :)

Every time someone logs into the chat go through the list getting rid of
any
usernames older than an hour or any other time.  And everytime someone
logs
off do the same thing.. or if you get a lot of activity, just go through
the
list when people logoff.

Cheers!

Rick

If you're going to be able to look back on something and laugh about
it,
you might as well laugh about it now. - Marie Osmond

 From: Matt Palermo [EMAIL PROTECTED]
 Date: Mon, 9 Jun 2003 17:19:31 -0400
 To: [EMAIL PROTECTED]
 Subject: [PHP] php and flash chat program
 
 Hey, I need some advice if anyone is willing to offer it.  I have a
chat
 program I am working on.  The interface is built in flash, and it uses
 PHP also.  There is a main chat area where the users type their
messages
 back and forth, and there is also a smaller area which displays all of
 the currently logged-in users.  When a user logs into the chat room,
it
 adds their nickname to a users.txt file, which creates a list of all
the
 online users and is then displayed in the chat page.  I also have a
 logoff button that will search for the users nickname in the users.txt
 file and remove it, so that it won't be displayed in the chat window
 anymore.  The only problem I am having is that if a user doesn't click
 on the logoff button and instead just closes the internet window or
 shuts off their computer, then their nickname will still appear in the
 list of users, since it wouldn't get a chance to be removed by the
 logoff button.  I'm not sure how to accomplish this, I would
appreciate
 any help you can offer me.  Thanks a lot.
 
 Matt
 




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] php and flash chat program

2003-06-09 Thread Richard Baskett
Well there really is no way of knowing if they left their computer or not,
or just shutdown their computer.  The only way that I know of would be to
use java, but that's not what you are using.

Good luck!

Rick

A wise women once said:  No one can help everybody, but everybody can help
somebody. - Unknown

 From: Matt Palermo [EMAIL PROTECTED]
 Date: Mon, 9 Jun 2003 21:37:20 -0400
 To: 'Richard Baskett' [EMAIL PROTECTED], 'PHP General'
 [EMAIL PROTECTED]
 Subject: RE: [PHP] php and flash chat program
 
 I realize that this can be done, but I would like to make it as instant
 as possible.  I don't want to wait very long for the user to be removed
 from the online users list.  Got any other ideas?  Thanks.
 
 Matt
 
 -Original Message-
 From: Richard Baskett [mailto:[EMAIL PROTECTED]
 Sent: Monday, June 09, 2003 6:15 PM
 To: Matt Palermo; PHP General
 Subject: Re: [PHP] php and flash chat program
 
 What I normally do in these situations is have two fields separated by
 tabs
 or commas or whatever you want.  The first field is the username and the
 second field is a timestamp.
 
 The timestamp can be updated every time the user writes a message, since
 Im
 sure you are logging also..  or after, say an hour, have their name
 removed
 from the list, although this might make them have to log back in :)
 
 Every time someone logs into the chat go through the list getting rid of
 any
 usernames older than an hour or any other time.  And everytime someone
 logs
 off do the same thing.. or if you get a lot of activity, just go through
 the
 list when people logoff.
 
 Cheers!
 
 Rick
 
 If you're going to be able to look back on something and laugh about
 it,
 you might as well laugh about it now. - Marie Osmond
 
 From: Matt Palermo [EMAIL PROTECTED]
 Date: Mon, 9 Jun 2003 17:19:31 -0400
 To: [EMAIL PROTECTED]
 Subject: [PHP] php and flash chat program
 
 Hey, I need some advice if anyone is willing to offer it.  I have a
 chat
 program I am working on.  The interface is built in flash, and it uses
 PHP also.  There is a main chat area where the users type their
 messages
 back and forth, and there is also a smaller area which displays all of
 the currently logged-in users.  When a user logs into the chat room,
 it
 adds their nickname to a users.txt file, which creates a list of all
 the
 online users and is then displayed in the chat page.  I also have a
 logoff button that will search for the users nickname in the users.txt
 file and remove it, so that it won't be displayed in the chat window
 anymore.  The only problem I am having is that if a user doesn't click
 on the logoff button and instead just closes the internet window or
 shuts off their computer, then their nickname will still appear in the
 list of users, since it wouldn't get a chance to be removed by the
 logoff button.  I'm not sure how to accomplish this, I would
 appreciate
 any help you can offer me.  Thanks a lot.
 
 Matt
 
 
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP and Flash

2003-05-30 Thread Sancar Saran
On Thursday 29 May 2003 14:31, César Aracena wrote:
 Hi all,

 I just made a pretty little flash banner with buttons and everything...
 Does anyone knows if I can make the flash buttons links with dynamic
 content? I need to fetch cartain common pages but with different
 variables.

 Thanks in advanced,


Hi,
I try to do same think a while ago, You have to pass variable into flash code. 
I think Flash 6.0  able to do this. Also I found that code. Which is work 
with flash 4.0.

html
head
titlemoock web flash importing a cookie using a query string/title
/HEAD

BODY BGCOLOR=#00


DIV ALIGN=CENTER
SCRIPT LANGUAGE=JavaScript1.2

!--

// name: flash cookie importer, query string version
// version: 1.0.1
// author: colin moock
// description: passes the value of the first variable in
//  a browser's cookie to a flash movie.

// last updated: june 2, 2000



window.document.cookie = msg = Burak

// if the cookie isn't empty
if (window.document.cookie != ) {
// get the value of the cookie.
var theCookie = document.cookie;

// extract the value of our cookie variable from the cookie.
// ! note that this example only handles a single-variable cookie.
theCookie = 
theCookie.substring((theCookie.indexOf(=)+1),theCookie.length);
}
else {
// if there's no cookie, then set the tracker to the default label.
theCookie = null;
}

// write the object/embed tags with the cookie appended to the .swf file name
document.write(
OBJECT
+ CLASSID=clsid:D27CDB6E-AE6D-11cf-96B8-44455354
+ WIDTH=550
+ HEIGHT=400
+ 
CODEBASE=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0'
+ PARAM NAME=MOVIE VALUE=import-cookie.swf?cookie= + theCookie + 

+ PARAM NAME=PLAY VALUE=true
+ PARAM NAME=LOOP VALUE=false
+ PARAM NAME=QUALITY VALUE=high
+ PARAM NAME=MENU VALUE=false
+ EMBED
+  SRC=import-cookie.swf?cookie= + theCookie
+  WIDTH=550
+  HEIGHT=400
+  PLAY=true
+  LOOP=false
+  QUALITY=high
+  MENU=false
+  TYPE=application/x-shockwave-flash
+  
PLUGINSPAGE=http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash
+ /EMBED
+ /OBJECT
);
// --
/SCRIPT

/DIV

/BODY
/HTML


But I.m not sure work well with php
If you get workable solution, can you shared us?


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] PHP and Flash

2003-05-29 Thread César Aracena
Hi all,

I just made a pretty little flash banner with buttons and everything...
Does anyone knows if I can make the flash buttons links with dynamic
content? I need to fetch cartain common pages but with different
variables.

Thanks in advanced,

---
Cesar Aracena
[EMAIL PROTECTED]
http://www.icaam.com.ar
Cel: +54.299.635-6688
Tel/Fax: +54.299.477-4532
Cipolletti, Rio Negro
R8324BEG
Argentina




---
Soluciones profesionales en
 Internet y Comunicaciones
  http://www.icaam.com.ar



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP and Flash

2002-10-02 Thread Lowell Allen

 From: Rebekah Garner [EMAIL PROTECTED]
 
 Okay, this may be a bit off topic, BUT we just finished a website using PHP,
 MySql and Flashwell, I need someone...anyone to check out this URL for me
 and click on the Stallions menu, and tell me if anything loads into the text
 field.  The client swears that it isn't, but it is dammit. Or is it?
 
 http://www.overbrookfarm.myiglou.com/
 
Works fine for me in Mac OS 9.2, both Mozilla 1.0 and IE 5.1, Flash player
6. But with Mac OS 9, IE 5.1 and Flash player 5, I get a blank page.

--
Lowell Allen


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] PHP and Flash

2002-10-02 Thread Debbie Dyer

Not sure where you mean by 'into the text field' but I see a drop down menu
with a photo loaded underneath and then underneath that further menus with
more pics of horses.

Debbie

- Original Message -
From: Lowell Allen [EMAIL PROTECTED]
To: PHP [EMAIL PROTECTED]
Sent: Wednesday, October 02, 2002 12:40 PM
Subject: Re: [PHP] PHP and Flash


  From: Rebekah Garner [EMAIL PROTECTED]
 
  Okay, this may be a bit off topic, BUT we just finished a website using
PHP,
  MySql and Flashwell, I need someone...anyone to check out this URL
for me
  and click on the Stallions menu, and tell me if anything loads into the
text
  field.  The client swears that it isn't, but it is dammit. Or is it?
 
  http://www.overbrookfarm.myiglou.com/
 
 Works fine for me in Mac OS 9.2, both Mozilla 1.0 and IE 5.1, Flash player
 6. But with Mac OS 9, IE 5.1 and Flash player 5, I get a blank page.

 --
 Lowell Allen


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] PHP and Flash

2002-10-01 Thread Rebekah Garner

Okay, this may be a bit off topic, BUT we just finished a website using PHP, MySql and 
Flashwell, I need someone...anyone to check out this URL for me and click on the 
Stallions menu, and tell me if anything loads into the text field.  The client swears 
that it isn't, but it is dammit. Or is it?

http://www.overbrookfarm.myiglou.com/

Rebekah Garner



Re: [PHP] PHP and Flash

2002-10-01 Thread Justin French

What f'n text field?

Justin


on 02/10/02 2:15 PM, Rebekah Garner ([EMAIL PROTECTED]) wrote:

 Okay, this may be a bit off topic, BUT we just finished a website using PHP,
 MySql and Flashwell, I need someone...anyone to check out this URL for me
 and click on the Stallions menu, and tell me if anything loads into the text
 field.  The client swears that it isn't, but it is dammit. Or is it?
 
 http://www.overbrookfarm.myiglou.com/
 
 Rebekah Garner
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] PHP and Flash

2002-10-01 Thread Peter Houchin


do you mean load into the menu as in populate the menu? if so then that is
working but if u mean u click on a link then nothing comes up


 -Original Message-
 From: Rebekah Garner [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, 2 October 2002 2:15 PM
 To: [EMAIL PROTECTED]
 Subject: [PHP] PHP and Flash


 Okay, this may be a bit off topic, BUT we just finished a website
 using PHP, MySql and Flashwell, I need someone...anyone to
 check out this URL for me and click on the Stallions menu, and
 tell me if anything loads into the text field.  The client swears
 that it isn't, but it is dammit. Or is it?

 http://www.overbrookfarm.myiglou.com/

 Rebekah Garner



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] PHP and Flash

2002-10-01 Thread Peter Houchin

am assuming tis up  the top ( it loads other menu names) and the white space
down the bottom. but either way it don't

 -Original Message-
 From: Justin French [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, 2 October 2002 2:29 PM
 To: Rebekah Garner; [EMAIL PROTECTED]
 Subject: Re: [PHP] PHP and Flash


 What f'n text field?

 Justin


 on 02/10/02 2:15 PM, Rebekah Garner ([EMAIL PROTECTED]) wrote:

  Okay, this may be a bit off topic, BUT we just finished a
 website using PHP,
  MySql and Flashwell, I need someone...anyone to check out
 this URL for me
  and click on the Stallions menu, and tell me if anything loads
 into the text
  field.  The client swears that it isn't, but it is dammit. Or is it?
 
  http://www.overbrookfarm.myiglou.com/
 
  Rebekah Garner
 


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] PHP and Flash

2002-10-01 Thread Bob Irwin

Works fine for me...

IE 6.023
Flash 6.0

if I click on 'stallions' I get a list of the stallions with pics.

If I choose a horse from the dropdown menu, I get a picture of a horse with
a flash textbox full of details.  Not all of them do this though - some are
missing info and pics - I'm assuming it's still in dev.

Netscape 6.2.3 works as well.  Mozilla loads the horse, but doesn't load the
textbox for some reason.

Best Regards
Bob Irwin
Server Admin  Web Programmer
Planet Netcom
- Original Message -
From: Peter Houchin [EMAIL PROTECTED]
To: Rebekah Garner [EMAIL PROTECTED];
[EMAIL PROTECTED]
Sent: Wednesday, October 02, 2002 2:59 PM
Subject: RE: [PHP] PHP and Flash



 do you mean load into the menu as in populate the menu? if so then that is
 working but if u mean u click on a link then nothing comes up


  -Original Message-
  From: Rebekah Garner [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, 2 October 2002 2:15 PM
  To: [EMAIL PROTECTED]
  Subject: [PHP] PHP and Flash
 
 
  Okay, this may be a bit off topic, BUT we just finished a website
  using PHP, MySql and Flashwell, I need someone...anyone to
  check out this URL for me and click on the Stallions menu, and
  tell me if anything loads into the text field.  The client swears
  that it isn't, but it is dammit. Or is it?
 
  http://www.overbrookfarm.myiglou.com/
 
  Rebekah Garner
 


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


 Scanned by PeNiCillin http://safe-t-net.pnc.com.au/

 Scanned by PeNiCillin http://safe-t-net.pnc.com.au/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] PHP and Flash

2002-09-18 Thread timo stamm

Or let Flash take over the active part.

You can retrieve data from PHP scripts in Flash and build 
dynamic menus, for example. Pretty much everything is possible.


Timo


Am Mittwoch den, 18. September 2002, um 06:11, schrieb Rasmus Lerdorf:
 php.net/ming

 On Wed, 18 Sep 2002, [EMAIL PROTECTED] wrote:

 Hi all,

 I've never combined PHP with Flash, but I do know there's some
 possibilities. I'm wondering if I can make a dynamic-PHP-site which
 controls Flash. I need the administrator to be able to upload 
 a new product
 to a DB, and then be seen by the visitors in Flash... is this 
 possible?

 I want to do something like www.rolex.com but don't want to 
 make new pages
 every time a new product is added... Is this possble? Where 
 can I find the
 documentation?

 Thanks in advance,

 César Aracena
 On Dial-Up

 
 mail2web - Check your email from the web at
 http://mail2web.com/ .



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] PHP and Flash

2002-09-17 Thread [EMAIL PROTECTED]

Hi all,

I've never combined PHP with Flash, but I do know there's some
possibilities. I'm wondering if I can make a dynamic-PHP-site which
controls Flash. I need the administrator to be able to upload a new product
to a DB, and then be seen by the visitors in Flash... is this possible?

I want to do something like www.rolex.com but don't want to make new pages
every time a new product is added... Is this possble? Where can I find the
documentation?

Thanks in advance,

César Aracena
On Dial-Up


mail2web - Check your email from the web at
http://mail2web.com/ .



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] PHP and Flash

2002-09-17 Thread Rasmus Lerdorf

php.net/ming

On Wed, 18 Sep 2002, [EMAIL PROTECTED] wrote:

 Hi all,

 I've never combined PHP with Flash, but I do know there's some
 possibilities. I'm wondering if I can make a dynamic-PHP-site which
 controls Flash. I need the administrator to be able to upload a new product
 to a DB, and then be seen by the visitors in Flash... is this possible?

 I want to do something like www.rolex.com but don't want to make new pages
 every time a new product is added... Is this possble? Where can I find the
 documentation?

 Thanks in advance,

 César Aracena
 On Dial-Up

 
 mail2web - Check your email from the web at
 http://mail2web.com/ .



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] php and flash

2001-08-21 Thread Jeff Pearson

Best places I learned from are www.flashkit.com as well as the books Dynamic
Flash which includes a chapter on php. Other than that, I pulled apart
projects downloaded from flashkit.


Jeff Pearson

 -Original Message-
 From: Jack [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 21, 2001 7:49 AM
 To: [EMAIL PROTECTED]
 Subject: [PHP] php and flash


 Hi people
 Is there anyone know where can I find something to study more
 about how to make dynamic content in flash using php and mySql?
 Jack
 [EMAIL PROTECTED]
 Love your enemies, it will drive them nuts



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] php and flash

2001-08-20 Thread Jack

Hi people
Is there anyone know where can I find something to study more about how to make 
dynamic content in flash using php and mySql?
Jack
[EMAIL PROTECTED]
Love your enemies, it will drive them nuts



Re: [PHP] php and flash

2001-08-20 Thread speedboy

STOP asking this question again and again.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] php and flash 5 books?

2001-06-20 Thread mfourny

Hi Jay,

Julie Melonie participate to the redaction of a book on FLASH 5; see
infos on her website at http://www.thickbook.com you can also find there 
some tutorial on the subject.

Marc


Jay Paulson wrote:
 
 Anyone know of any good books that actually deal with php interfacing with
 flash 5?  I've found one book but just curious if there are others out
 there...
 
 thanks,
 jay

-- 


/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*
/* Marc Fourny  /*
/*  Multimedia Development for the web  /*
/* /*
/*CD-ROM/*
/*   Fourny ElectronicEDiting   /*
/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*



Re: [PHP] php and flash 5 books?

2001-06-20 Thread Jens Nedal

Could you tell me which book that ist?
Maybe Title author and ISBN Number.

I would be grateful for tha tinformation, thx!

regards, Jens

on 19.06.2001 17:30 Uhr, Jay Paulson at [EMAIL PROTECTED] wrote:

 Anyone know of any good books that actually deal with php interfacing with
 flash 5?  I've found one book but just curious if there are others out
 there...
 
 thanks,
 jay
 




Re: [PHP] php and flash 5 books?

2001-06-20 Thread Julie Meloni

[EMAIL PROTECTED] wrote:

 Hi Jay,
 
 Julie Melonie participate to the redaction of a book on FLASH 5; see
 infos on her website at http://www.thickbook.com you can also find there 
 some tutorial on the subject.
 
 Marc
 


No no no -- I have not written a book that deals with PHP and Flash at 
all.  I contributed some chapters to a very basic how to work with 
Flash book, but it has nothing to do with PHP.

Sorry for any confusion.

- Julie


++
| Julie Meloni ([EMAIL PROTECTED]) |
||
| PHP Essentials and PHP Fast  Easy |
|   http://www.thickbook.com |
++


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] php and flash 5 books?

2001-06-20 Thread Jay Paulson

Yeah the flash 5 dynamic content studio by friends of ed is one of the books
I have found.. but it seems to me that most of the books I've seen / browsed
through only have a small chapter about php and flash.. but the FOE book has
the most about it.. a short intro to php (which I skipped all together b/c
it assumes that you have never seen PHP or code in your life).. and then it
just talks about getting variables by calling a php script from within flash
to get the info you need from a database or just where ever you want to get
it.. anyway it was interesting to say the least but that one chapter wasn't
worth the $80 or so for the book.. would just rather go to barnes and noble
get a cup of coffee and read that one chapter while I'm there :)

Jay Paulson
Internet Program Director
LBJS
[EMAIL PROTECTED]

p.s. anyone going to the O'Reilly Open Source Convention in San Diego?

- Original Message -
From: Henry [EMAIL PROTECTED]
To: Jay Paulson [EMAIL PROTECTED]
Sent: Wednesday, June 20, 2001 8:26 AM
Subject: Re: [PHP] php and flash 5 books?


  Anyone know of any good books that actually deal with php interfacing
with
  flash 5?  I've found one book but just curious if there are others out
  there...

 check out flash 5 dynamic content studio by friends of ed. -
 http://www.friendsofed.com/books.html - some php, more asp, generator,
etc.

 Cheers
 Henry
 [EMAIL PROTECTED]
 http://www.bigjolt.com




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] php and flash 5 books?

2001-06-19 Thread Jay Paulson

Anyone know of any good books that actually deal with php interfacing with
flash 5?  I've found one book but just curious if there are others out
there...

thanks,
jay




[PHP] php and flash 5 books?

2001-06-19 Thread Jay Paulson

Anyone know of any good books that actually deal with php interfacing with
flash 5?  I've found one book but just curious if there are others out
there...

thanks,
jay