[PHP] image upload - determining image resolution in pixels ?

2001-05-22 Thread Nicolas Mermet
Hi, I was wondering if there is a way to analize an uploaded jpeg file in order to extract its resolution in pixels. Would that be also possible with a quicktime movie ? thanks, Nicolas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] Redirection in PHP ? (newbie)

2001-05-14 Thread Nicolas Mermet
Hi, this might be a trivial question but I could not find any docs on that on php.net. I am develloping the admin side of a dynamic web site (php/mysql). The mechanic is nothing special: a form is submitted and sends the data to the php page/script that actually does the work of feeding the db.

Re: [PHP] getting rows from separate tables stacked in a single array ? (newbie, mysql)

2001-04-25 Thread Nicolas Mermet
I did put a spot ID because I never thought of building a temp table on the fly and dropping it at the end of the script. :-) Now that is an elegant concept ! I was going for a permanent table, wich would have been heavier to feed when other tables got updated (but wich would have been

[PHP] getting rows from separate tables stacked in a single array ? (newbie, mysql)

2001-04-24 Thread Nicolas Mermet
Hi. This will probably sound simple to all of you but I am hitting my head on a brick wall so far :-). I need to generate a list (sorted by descending time) of different objects referenced in multiple tables. All those objects share a key related to a project. This works splendidly from a

Re: [PHP] getting rows from separate tables stacked in a single array ? (newbie, mysql)

2001-04-24 Thread Nicolas Mermet
Thanks a bunch, SL. I was expecting some heavy manipulation of that sort. Wouldnt have been able to write that code. (yet ! ;-). I will try that tomorow. This afternoon In despair I ended tweaking the db and creating an extra table to link all the desired tables with a time indice, temporarily