Re: [PHP-DB] HTML editors

2001-08-17 Thread Ian Grant
Okay thanks, I'll have a look at that. I am right in thinking that ActiveX controls can work in Netscape, as long as Internet Explorer (>4.0) is installed? Ian. John Pickett <[EMAIL PROTECTED]> wrote in message 001501c1269f$c977ed20$4c6146a6@notebook">news:001501c1269f$c977ed20$4c6146a6@notebo

[PHP-DB] interbase or postgres

2001-08-17 Thread J-E-N
just want to here comments from you guys. i will be doing a shopping cart and i'm still looking for the best database which i could use aside from Oracle.i'm still thingking which is better. interbase or postgres?

RE: [PHP-DB] HTML editors

2001-08-17 Thread Francisco Carvalho
No, ActiveX controls don't work on Netscape. For that you'll need a plug-in. There is a company, I think their name is compass, they do/did a plug-in that enable Netscape to run activex controls. John Any thouht where to find it? You did good last time. -Original Message- From: Ian Gran

Re: [PHP-DB] HTML editors

2001-08-17 Thread Andre P.
I found this link from the phpnuke site. http://venus.prosalg.no/~savage/wysiwyg/ I haven't had time to look at it but it doesn't seem to use activex. looks simple and clear. Andre Ian Grant wrote: >Hi, > >I'm looking for something similar to eWebEdit Pro >(http://www.ewebeditpro.com), but a l

[PHP-DB] mysql optional file - my.cnf

2001-08-17 Thread Fai
Does any body know how to prevent mysql server looking for user specific optional file ( .my.cnf)? So, user cannot put the optional file (.my.cnf) in his home directory to affect the mysql server behaviour. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTE

Re: [PHP-DB] mysql optional file - my.cnf

2001-08-17 Thread Paul Burney
on 8/17/01 8:35 AM, Fai ([EMAIL PROTECTED]) wrote: > Does any body know how to prevent mysql server looking for user specific > optional file ( .my.cnf)? So, user cannot put the optional file (.my.cnf) in > his home directory to affect the mysql server behaviour. Please try the MySQL list since

[PHP-DB] PostgreSQL or SAPDB

2001-08-17 Thread Alexandre Santos
I'm starting a project and I have this doubt: Postgres or SAPDB? I have some experience in Oracle, but I need a free DB. Any idea? Alex -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the l

[PHP-DB] Re: SQL Help?

2001-08-17 Thread Barry Prentiss
Here's how I did it SQL> select cat.*, (select count(faq.cat_id) from mdfaq_faq_cat faq 2 where cat.id = faq.cat_id and faq.faq_id = 23) as selected from mdfaq_category cat; ID NAME -- SELECTED --

[PHP-DB] PHP4 OCIFetch with Oracle

2001-08-17 Thread Konrad BüKo
Hi We've a Problem with PHP4 OCIFetch and varchar2 ! OCHIFetch with number or date Field it work's fine but when i'll fetch a varchar2 Field then i've no output in the browser ! When i dump the array then i see the character is 20 Bytes my field is 10 bytes i suppose so the character is unicode

[PHP-DB] Implementing P3P with phtml files?

2001-08-17 Thread Brian Tegtmeier
Ok.. I am starting up this website for a business of mine and will be using PHP in the form of the .phtml extension because I want to basically make them HTML webpages with snippets of PHP code. After doing some research the last few days about how Internet Explorer 6 is going to restrict and

[PHP-DB] Re: interbase or postgres

2001-08-17 Thread Michael
J-E-N wrote: > > just want to here comments from you guys. i will be doing a shopping cart and i'm >still looking for the best database which i could use aside from Oracle.i'm still >thingking which is better. interbase or postgres? Just a few comments - Postgresql has a larger range of data t

RE: [PHP-DB] Implementing P3P with phtml files?

2001-08-17 Thread Mark Milaszkiewicz
>>After doing some research the last few days about how Internet >>Explorer 6 is going to restrict and block some websites (without >>a valid P3P policy), I decided it may be a good idea to setup a >>P3P compliant site. It depends on what the user sets the site to do. I'm currently running IE 6 B

[PHP-DB] query returned "Resource id #2"

2001-08-17 Thread default
Hi, I'm using PHP 4 and mysql. I'm trying to do just a simple query from a database table, but every time it returns the value, it returns "Resource id #2" and results like that. Any ideas? Thanks. Alex -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTE

Re: [PHP-DB] query returned "Resource id #2"

2001-08-17 Thread grant
That Resource ID #2 is the connection or result set. You need to use the connection to do a query, which returns a result set, then use the result set to do fetches. Those will return an array of the stuff you really wanted. __

[PHP-DB] Re: query returned "Resource id #2" (quick php/mysql tutorial)

2001-08-17 Thread Jonathan Hilgeman
Hi Alex, mySQL doesn't return normal PHP values. You need to use mysql functions to convert the mySQL resulting data into an array, like so: // mySQL Table: // // field1 | field2 | stuff | // // Florida | Ferrari | George | /

Re: [PHP-DB] query returned "Resource id #2"

2001-08-17 Thread Alex
Could you give me an example? Grant wrote: > That Resource ID #2 is the connection or result set. You need to use the > connection to do a query, which returns a result set, then use the result > set to do fetches. Those will return an array of the stuff you really > wanted. > > __

[PHP-DB] Re: query returned "Resource id #2"

2001-08-17 Thread CC Zona
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Default) wrote: > I'm using PHP 4 and mysql. I'm trying to do just a simple query from a > database table, but every time it returns the value, it returns > "Resource id #2" and results like that. Any ideas? Thanks. This is correct. See the

[PHP-DB] Newbie: Modify - Delete entries... And more (quite a long post)

2001-08-17 Thread sg
Hi there! I think it's a pretty easy one, but I'm quite new to PHP... I managed to create a database with a table that I use to store personal data: My address book The fields are name, address, email, and so forth. Now I have a loop in a page that cycle through all my entries and displays the

Re: [PHP-DB] query returned "Resource id #2"

2001-08-17 Thread grant
This uses PostgreSQL, but the concepts are the same for MySQL. On Fri, 17 Aug 2001, Alex wrote: > Could you give me an example? > > Grant wrote: > > > That Resource ID #2 is the connection or result set. You need to use the > > connection to do a query, which returns a result set, then use the

Re: [PHP-DB] Newbie: Modify - Delete entries

2001-08-17 Thread KSchneider
Sébastien, modify and delete submit buttons would probably be your best bet. my usual modus operandi is to send an id number (or other qualifying criteria) to the next page (often i use the very same page so as to not have to re-write the form). ex: modify: send id in an input hidden stateme

[PHP-DB] saving to two tables at the same time

2001-08-17 Thread CrossWalkCentral
Question: I have a form of 1/2 customer data and the other 1/2 service info. that the custoemr fills out and when they submit it my php scrips adds the customer infor to the customer table but it will not add the service info to the service table? Any one have any ideas -- Cross Walk Central ww

[PHP-DB] Re: saving to two tables at the same time

2001-08-17 Thread Hugh Bothwell
"Crosswalkcentral" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have a form of 1/2 customer data and the other 1/2 service info. that the > custoemr fills out and when they submit it my php scrips adds the customer > infor to the customer table but it will

Re: [PHP-DB] saving to two tables at the same time

2001-08-17 Thread leo g. divinagracia iii
CrossWalkCentral wrote: > > Question: > > I have a form of 1/2 customer data and the other 1/2 service info. that the > custoemr fills out and when they submit it my php scrips adds the customer > infor to the customer table but it will not add the service info to the > service table? > > Any

Re: [PHP-DB] saving to two tables at the same time

2001-08-17 Thread CrossWalkCentral
I have tried this but it has continued to fail the only way I have gotten it to work is via 2 diffrent php scrips -- Cross Walk Central www.crosswalkcentral.net Support Center Your Web Hosting Community! "Leo G. Divinagracia III" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAI

Odp: [PHP-DB] Re: interbase or postgres

2001-08-17 Thread Jarek Zgoda
Od: "Michael" <[EMAIL PROTECTED]> Temat: [PHP-DB] Re: interbase or postgres > J-E-N wrote: > > > > just want to here comments from you guys. i will be doing a shopping cart and i'm still looking for the best database which i could use aside from Oracle.i'm still thingking which is better. interb

Re: [PHP-DB] saving to two tables at the same time

2001-08-17 Thread Jason Wong
Do you have any code snippets for us to peruse? -- Jason Wong Gremlins Associates www.gremlins.com.hk - Original Message - From: CrossWalkCentral <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, August 18, 2001 10:58 AM Subject: Re: [PHP-DB] saving to two tables at the same t