[PHP-DB] Re: Upload images with minimun effort from final user

2005-09-27 Thread Sylvain Gourvil
You have just to rename the image with the news ID ! Perhaps I did not understand correctly your question ? Tell me if you want also an example (in french, sorry) of the upload and rename, etc wioth pear quickform David Arroyo wrote: Hi @ll, I have to make an interface for a newspaper site

[PHP-DB] Re: Upload images with minimun effort from final user

2005-09-27 Thread A.J. Brown
You can store the original name of the uploaded file in your news table by extracting it from the variable you use to save the image, so there is no need for the user to input . Check this link: http://us3.php.net/features.file-upload A better solution is to rename the image to the unique ID o

[PHP-DB] oracle complex type and oci_new_collection

2005-09-27 Thread argoo
Is it possible to use a complex collection in PHP as shown below? Oci_new_collection is successful, but the OCI-Collection->getElem(i) returns false for each record returned. If we change from a complex type to a simple type, the data returns as expected. ---

[PHP-DB] oracle complex type and oci_new_collection

2005-09-27 Thread argoo
Is it possible to use a complex collection in PHP as shown below? Oci_new_collection is successful, but the OCI-Collection->getElem(i) returns false for each record returned. If we change from a complex type to a simple type, the data returns as expected. --

[PHP-DB] why are you deleting my post?

2005-09-27 Thread argoo
QUIT -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] oracle complex type and oci_new_collection

2005-09-27 Thread argoo
Is it possible to use a complex collection in PHP as shown below? Oci_new_collection is successful, but the OCI-Collection->getElem(i) returns false for each record returned. If we change from a complex type to a simple type, the data returns as expected. --

[PHP-DB] oracle complex type and oci_new_collection

2005-09-27 Thread hal9000jw
Is it possible to use a complex collection in PHP as shown below? Oci_new_collection is successful, but the OCI-Collection->getElem(i) returns false for each record returned. If we change from a complex type to a simple type, the data returns as expected. --

[PHP-DB] Call Postgre Stored Procedure

2005-09-27 Thread Heri Sugianto Manunggal
Is it possible to call postgres' stored procedure from php? if it's so, how? Can anyone give me the example script to call postgres' stored procedure? Thanks Heri __ Yahoo! Mail - PC Magazine Editors' Choice 2005 http://mail.yahoo.com -- PHP D

[PHP-DB] RE: Upload images with minimun effort from final user

2005-09-27 Thread Matthias Willerich
A.J. Brown: A better solution is to rename the image to the unique ID of the news article it's associated with (assuming there is only one image allowed per article). This helps eliminate the chances of overwriting an existing image without bothering the user with error messages. When I do this,