RE: [PHP-DB] SQL request on DBase file

2006-02-11 Thread David BERCOT
Hi, Whats wonrg with the manual? http://ca3.php.net/manual/en/ref.oracle.php http://www.zend.com/products/zend_core/zend_core_for_oracle I looked at these links and I found nothing about .pdf files !!! I have no problem with Oracle, but only for requesting, in SQL, .dbf files... David.

RE: [PHP-DB] SQL request on DBase file

2006-02-11 Thread Bastien Koert
Guess I misunderstodd the post, thought you were asking about how to access oracle after importing the dbase files http://ca.php.net/manual/en/ref.dbase.php Not sure about your question on PDFs..can you clarify? Bastien From: David BERCOT [EMAIL PROTECTED] To: php-db@lists.php.net

RE: [PHP-DB] SQL request on DBase file

2006-02-11 Thread David BERCOT
Guess I misunderstodd the post, thought you were asking about how to access oracle after importing the dbase files http://ca.php.net/manual/en/ref.dbase.php Not sure about your question on PDFs..can you clarify? Of course. No problemo ;-) I want to make SQL request on PDFs files like

[PHP-DB] handling of checkboxvalues

2006-02-11 Thread Ruprecht Helms
Hi, I want to have a function that delete some customers. The customers will be selected by cklicking on in checkboxes. This is the line I codes the checkboxes: input type='checkbox' name='user_loeschen[] value=id id=.[User-ID]. How can I use the checkboxvariable within another script and

[PHP-DB] Changing a column in a table

2006-02-11 Thread Roger Dickinson
Hi all, I defined a field in a table to be float(10.2) but I decided it should be float(10.3). Can I change it without creating a new table? I can't seem to find anything in the online documentation about this. __ - Martian Rover KF6KNC --

RE: [PHP-DB] handling of checkboxvalues

2006-02-11 Thread Bastien Koert
Give the checkbox value the id of the record to be deleted...if its checked, then you can simply do an in string check in the sql input type='checkbox' name='user_loeschen value='.[User-ID].' $sql = delete from table where id in ({$_POST['user_loeschen']}; bastien From: Ruprecht Helms

RE: [PHP-DB] Changing a column in a table

2006-02-11 Thread Bastien Koert
Use PhpMyAdmin to do this, very simple...otherwise look at the ALTER statement in the mysql manual bastien From: Roger Dickinson [EMAIL PROTECTED] Reply-To: Roger Dickinson [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] Changing a column in a table Date: Sat, 11 Feb 2006

Re: [PHP-DB] handling of checkboxvalues

2006-02-11 Thread Luis Morales
Well, you can do this... form.php ? if($_POST['submit'] == 'send form'){ for($i=0;count($_POST['user_loeschen'])$i;$i++){ --- put here your sql statement to delete user --- ej... delete from users where id =

Re: Re: [PHP-DB] Help getting php up and running

2006-02-11 Thread bungo
Is the file you are trying to save parsed php? If it is parsed, I have no Idea what your problem is, but its probably not apache-php. otherwise, Its possible, you need to add handlers in your apache conf to instruct apache to run .php files as php something like AddType