RE: [PHP] Adding records to a MySql database

2001-08-20 Thread Alfredeen, Johan
Read in the mySQL manual at /mysql_manual_split/manual-split/manual_Reference.html#CREATE_TABLE etc ie. CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name [(create_definition,...)] [table_options] [select_statement] ALTER [IGNORE] TABLE tbl_name alter_spec [, alter_spec ...] and more ...

RE: [PHP] Adding records to a MySql database

2001-08-20 Thread Alfredeen, Johan
SET col_name=expression, col_name=expression, ... -Original Message- From: Dave.O [mailto:[EMAIL PROTECTED]] Sent: Friday, August 17, 2001 5:41 PM To: Martín Marqués Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Adding records to a MySql database I was looking for the command

Re: [PHP] Adding records to a MySql database

2001-08-17 Thread ERISEN, Mehmet Kamil
In adition to that, you may want to check out the online documentation on the www.php.net website. Find the section under mySQL. If you know how to manipulate data using SQL, php apis are very easy to use .. www.mysql.com could be good resource for you as well. if you have a specific

Re: [PHP] Adding records to a MySql database

2001-08-17 Thread ERISEN, Mehmet Kamil
Message - From: Martín Marqués [EMAIL PROTECTED] To: Dave.O [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, August 17, 2001 11:28 PM Subject: Re: [PHP] Adding records to a MySql database On Vie 17 Ago 2001 19:17, you wrote: I am new to MySql but wanting to use PHP to update

Re: [PHP] Adding records to a MySql database

2001-08-17 Thread Martín Marqués
On Vie 17 Ago 2001 20:41, Dave.O wrote: I was looking for the command something like mysql_insert or something, just found dba_insert() is this it ?!? dba is not MySQL! Saludos... :-) -- Porqué usar una base de datos relacional cualquiera, si podés usar PostgreSQL?

Re: [PHP] Adding records to a MySql database

2001-08-17 Thread Dave.O
Thanks - Original Message - From: ERISEN, Mehmet Kamil [EMAIL PROTECTED] To: Dave.O [EMAIL PROTECTED]; Martín_Marqués [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, August 18, 2001 12:42 AM Subject: Re: [PHP] Adding records to a MySql database Here is how this is done

Re: [PHP] Adding records to a MySql database

2001-08-17 Thread Martín Marqués
On Vie 17 Ago 2001 19:17, you wrote: I am new to MySql but wanting to use PHP to update and maintain a database. I thought I might use MySql. I have installed MySql, and in PHP have created a database called 'mydir'. I am trying to find php functions to add new records/fields to the

Re: [PHP] Adding records to a MySql database

2001-08-17 Thread Dave.O
Thanks - Original Message - From: Martín Marqués [EMAIL PROTECTED] To: Dave.O [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, August 18, 2001 12:43 AM Subject: Re: [PHP] Adding records to a MySql database On Vie 17 Ago 2001 20:39, Dave.O wrote: No offence but you are telling

Re: [PHP] Adding records to a MySql database

2001-08-17 Thread Dave.O
for this ? I thought that PHP can be used to add records etc and query databases for this Dave - Original Message - From: Martín Marqués [EMAIL PROTECTED] To: Dave.O [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, August 17, 2001 11:28 PM Subject: Re: [PHP] Adding records to a MySql

Re: [PHP] Adding records to a MySql database

2001-08-17 Thread Martín Marqués
On Vie 17 Ago 2001 20:14, Dave.O wrote: I have read the documentation already. I am trying to create a directory, which information can be added and maintained through a the web browser. I thought that using a MySql database would be a good idea rather than writing it all to a file. You

Re: [PHP] Adding records to a MySql database

2001-08-17 Thread Dave.O
wrong. I presume this can be done in php - Original Message - From: Martín Marqués [EMAIL PROTECTED] To: Dave.O [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, August 18, 2001 12:23 AM Subject: Re: [PHP] Adding records to a MySql database On Vie 17 Ago 2001 20:14, Dave.O wrote

Re: [PHP] Adding records to a MySql database

2001-08-17 Thread Dave.O
I was looking for the command something like mysql_insert or something, just found dba_insert() is this it ?!? - Original Message - From: Martín Marqués [EMAIL PROTECTED] To: Dave.O [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, August 18, 2001 12:23 AM Subject: Re: [PHP] Adding

Re: [PHP] Adding records to a MySql database

2001-08-17 Thread ERISEN, Mehmet Kamil
() is this it ?!? - Original Message - From: Martín Marqués [EMAIL PROTECTED] To: Dave.O [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, August 18, 2001 12:23 AM Subject: Re: [PHP] Adding records to a MySql database On Vie 17 Ago 2001 20:14, Dave.O wrote: I have read the documentation already

Re: [PHP] Adding records to a MySql database

2001-08-17 Thread Martín Marqués
On Vie 17 Ago 2001 20:39, Dave.O wrote: No offence but you are telling me stuff I already know ! This mailing list is very good so dont take offence due to my frustration. I know how to connect to the server, create the database and more or less query it, but cant find the command to