Re: [PHP-DB] Postgres and PHP and Apache

2001-07-07 Thread Sharmad Naik
add this line to /etc/ld.so.conf /usr/local/pgsql/lib and then run ldconfig restart apache and then see the magic -Enjoy Sharmad On Thu, Jul 05, 2001 at 11:41:56AM -0400, Kelly Hamlin wrote: root@www:/var/lib/apache/bin# ./apachectl start Syntax error on line 239 of

RE: [PHP-DB] Distributed Tables vs. fewer Monster Tables

2001-07-07 Thread Robert Klinkenberg
If I understand it correcty you now have N tables with a structure MessageID | | and want to combine all those tables in one table with a structure like ForumID | MessageID | | This should not be a problem for any real db when you have an index on forumID and

Re: [PHP-DB] Interbase: how can I insert null values with placeholders?

2001-07-07 Thread Kiss Marton
So I guess I'm saying that in the code if you change the $asinteger assignment to: $asinteger = NULL; /* notice the quotes */ it may work. This would make the $asinteger PHP variable a string, but since the SQL would either like to have a numeric value there or the keyword NULL, that is

[PHP-DB] Re: Interbase: how can I insert null values with placeholders?

2001-07-07 Thread Kiss Marton
Jeremy Bettis [EMAIL PROTECTED] az alábbiakat írta a következõ üzenetben: [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I found this bug and fixed it but my patch has not been included in the cvs source yet. (Note, someone should give me cvs access to the interbase source.) The problem is

[PHP-DB] win2k - apache - php files open as text

2001-07-07 Thread olinux
hey all- i have reformatted and do not know why this will not work. I am running win 2k and apache [as a service] i have configured the http.conf file as all documentations say to, yet when i open a php file in IE it prompts to save file to disk open from current location - if i choose open it

[PHP-DB] Converting an Access DAtabase to..

2001-07-07 Thread Ali Khan
Hey can anyone help me on how to export an Access datbase to a .sql file which I could just dump into my websites DB? I've tried to but when I attempt it it wants my server, password, login etc and I dont want to give all that I just want a file made. Friends have done it before so I know its

RE: [PHP-DB] win2k - apache - php files open as text

2001-07-07 Thread olinux
Nevermind - i have solved it. I don't know what it was - but a few more reinstalls did it... olinux -Original Message- From: olinux [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 07, 2001 1:58 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] win2k - apache - php files open as text hey

[PHP-DB] mysql_data_seek in oracle

2001-07-07 Thread GAYTAN BAHAMONDEZ DANIEL EDUARDO
HI there! I need to know if there is an equivalent of this function for oracle this is the first time i use oracle, and id getting really hard to translate all the functions. im using orafetchinto to get my results Thanks in advance -- PHP Database Mailing List

Re: [PHP-DB] front end for mysql for use on my website

2001-07-07 Thread Indri
Try PHPMyAdmin from http://phpwizard.net/ Best wishes, Indri -- StickyZone.com - Proudly hosted by AletiaHosting.com From: Ed Peddycoart [EMAIL PROTECTED] Date: Fri, 6 Jul 2001 11:53:10 -0700 To: [EMAIL PROTECTED] Subject: [PHP-DB] front end for mysql for use on my website I am looking

[PHP-DB] Parsing Error

2001-07-07 Thread Jeff Grossman
I keep getting the following error: Warning: Supplied argument is not a valid MySQL result resource in /home/httpd/html/stats/jobs/listing.php on line 33 Warning: Supplied argument is not a valid MySQL result resource in /home/httpd/html/stats/jobs/listing.php on line 43 when I try to display

RE: [PHP-DB] Parsing Error

2001-07-07 Thread Larry Rivera
After a brief look it appears that your call to mysql_query is incorrect after the query then , then the link resource -Original Message- From: Jeff Grossman [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 07, 2001 6:23 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Parsing Error I keep

Re: [PHP-DB] Parsing Error

2001-07-07 Thread Jeff Grossman
Thanks Larry. Now I am getting a printf too few arguments error on this line: printf(A HREF=\mailto:[EMAIL PROTECTED]?subject=$store\%20$jobdesc\;$jobdesc/ABR\n); Thanks, Jeff Larry Rivera [EMAIL PROTECTED] wrote: After a brief look it appears that your call to mysql_query is incorrect

RE: [PHP-DB] Parsing Error

2001-07-07 Thread Larry Rivera
I don't see why you are using printf there try print instead or echo ;)0 -Original Message- From: Jeff Grossman [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 07, 2001 6:56 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Parsing Error Thanks Larry. Now I am getting a printf too few

[PHP-DB] Re: Installing PHP3 with mysql support on MOSXS

2001-07-07 Thread Jeff Grossman
Fabian Pichler [EMAIL PROTECTED] wrote: My problem is the mysql support (--with-mysql=/usr/local/mysql) in PHP. If I compile the PHP with this configure option apache 1.3.12 (or 1.3.9) doesn't start anymore. Try just using the --with-mysql option and not supplying a path. It works for me.