[PHP] Re:Php + flash, need some help making a small .FLA

2005-04-18 Thread I Poop Rainbows
Check out: http://www.sephiroth.it/index.php --- you don't really need to use the ming lib for something like this---there are a couple different ways to do this, depending on which version of flash you're using: Flash5---use loadvariables...check documentation FlashMX--use the loadVars

[PHP] RE:php and java applets

2004-05-25 Thread Ben Ford - Bio-Logic Aqua Technologies
Java Applets cannot connect to the same host they were loaded from. They run on the client machine as a local program. I know this because I attempted to run an applet and have it connect to a mysql server the lived on the web server. It couldn't connect using localhost as the domain name of

Re: [PHP] RE:php and java applets

2004-05-25 Thread raditha dissanayake
Ben Ford - Bio-Logic Aqua Technologies wrote: Java Applets cannot connect to the same host they were loaded from. They run on the client machine as a local program. I know this because I attempted to run an applet and have it connect to a mysql server the lived on the web server. Small

[PHP] RE:php and java applets

2004-05-25 Thread Ben Ford
This is straight from the http://java.sun.com/applets/ web page: When you use a Java technology-enabled browser to view a page that contains an applet, the applet's code is transferred to your system and executed by the browser's Java Virtual Machine (JVM). Java Applets cannot connect to the

Re: [PHP] RE:php and java applets

2004-05-25 Thread raditha dissanayake
Ben Ford wrote: This is straight from the http://java.sun.com/applets/ web page: When you use a Java technology-enabled browser to view a page that contains an applet, the applet's code is transferred to your system and executed by the browser's Java Virtual Machine (JVM). I have had one

[PHP] Re:PHP

2002-09-12 Thread llclmc
I am trying to copy *.log files to a file called dir.data. Does anyone have a suggestion on the php code to use? I am using Redhat 7.0. Using ls *.log dir.data doesn't work. Also does anyone know how to insert a text on about the 4 or 5 line of a file using php? I can add text to the end of

[PHP] Re:php modules

2001-07-25 Thread Miguel Loureiro
Sorry for taking your time, but I solve my problem, T.Y. Best RegardsMiguel Joaquim R. Loureiro [EMAIL PROTECTED] NEXTVISION - DEVTEAM www.nextvision.pt

[PHP] RE:PHP | MySQL Search

2001-03-13 Thread Dennis Gearon
I never have luck putting single quotes around anything but strings, or column names when called for. You might try your SELECT statement without 's Query 1 : (I only want result on houses which are in country 2 and in price 3 and facility 1 must be included on the spot) I've used :

Re: [PHP] RE:PHP | MySQL Search

2001-03-13 Thread Rick St Jean
If the fields are all integers then it is: SELECT HouseID FROM Search WHERE CountryID=2 AND PriceID=3 AND (FacilityID=5) Rick At 07:12 PM 3/13/01 -0800, Dennis Gearon wrote: I never have luck putting single quotes around anything but strings, or column names when called for. You might try