[PHP] Photoshop 6.0 & later + IPTC functions?

2002-12-11 Thread Ryan Gallagher
Does anyone know if there is a workable method currently for writing IPTC tags to JPG & TIFF files using PHP 4.2.3 specifically with the intent to read these written tags with photoshop 6.0 and later?? Currently we can set and read tags in PHP, but photoshop only sees any tags that it origin

Re: [PHP] Re: PHP Application Framework

2002-11-20 Thread Ryan Gallagher
Quoting Alexandru COSTIN <[EMAIL PROTECTED]>: > Hello, > You could check Krysalis, http://www.interakt.ro/products/Krysalis/ > > It's GPL, and it has a lot of powerful features included, as it's based on > XML and XSL. > > Alexandru > > Hi all, > > > > > > Does anyone have a recommendation fo

Re: [PHP] Problem whith query in query

2002-11-20 Thread Ryan Gallagher
Quoting Ernest E Vogelsinger <[EMAIL PROTECTED]>: > At 04:57 18.11.2002, Lars Espelid said: > [snip] > >I tought this would work, but it won't: > > > >SELECT * FROM identifisering as i > >WHERE i.identifiseringid=(SELECT MAX(ii.identifiseringid) > >FROM iden

Re: [PHP] How to: If($var != '#' OR '#')

2002-11-20 Thread Ryan Gallagher
Quoting Jami <[EMAIL PROTECTED]>: > I have code that says: > > if($_GET['sc'] != '2' OR '8'){ > do this. > } > > but I doesn't work. What do I need to do to get it to work? I have checked > operator precendence and all that and am still confused on whether I should > be using '||' or 'OR

Re: [PHP] Problem whith query in query

2002-11-20 Thread Ryan Gallagher
Quoting Ernest E Vogelsinger <[EMAIL PROTECTED]>: > At 18:29 20.11.2002, Ryan Gallagher said: > [snip] > >SELECT * FROM identifisering as i > >WHERE i.identifiseringid = ( > >SELECT MAX(ii.identifiseringid) AS m

Re: [PHP] How to: If($var != '#' OR '#')

2002-11-20 Thread Ryan Gallagher
Quoting Jason Wong <[EMAIL PROTECTED]>: > On Thursday 21 November 2002 01:34, Ryan Gallagher wrote: > > > Try: > > > > if( ( $_GET['sc'] != 2 ) OR ( $_GET['sc'] != 8 ) ){ > > /* > >* Do Foo provided sc is anything but a 2 or 8