[PHP-DB] Re: HTML or PHP?

2001-10-03 Thread _lallous
you'll have to use wordwrap() ! the browser won't be able to brake it down unless it have spaces in it Jason Caldwell [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I have a problem that seems like it should be a snap to fix, but leaves me feeling

RE: [PHP-DB] Check Boxes/UPDATE

2001-10-03 Thread Jason Wong
-Original Message- From: Jason G. [mailto:[EMAIL PROTECTED]] Sent: 03 October 2001 12:12 To: Matt C; [EMAIL PROTECTED] Subject: Re: [PHP-DB] Check Boxes/UPDATE Matt, Assuming that you have a variable number of records being displayed out of the database: As you write out the HTML,

[PHP-DB] MSSQL and ReturnCodes

2001-10-03 Thread Serial # 00673982
Hi, Does anyone know how to obtain a returncode from a stored procedure in SQL Server? If possible, I would like to avoid making ODBC. If ODBC commands are the answer, can someone please post a sample? Thanks! -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail:

[PHP-DB] Bug in new PHP Version?

2001-10-03 Thread Luditus
Hi there, I just downloaded the new 4.06 PHP Version and installed it on a new machine. My application does not work properly anymore, nor does mysqladmin. This are some warnings: Warning: mysql_db_query is deprecated; use mysql_select_db() and mysql_query() instead in c:\dokumente und

[PHP-DB] Performance boosting

2001-10-03 Thread Luditus
Hi there, my phpsite shows always a white page while accessing the db. Sometimes for seconds. How can I change it to a style like for example php.net does. While it is searching the db it shows the php logo and the header of the html site. It looks like that: http:www.globosapiens.net/gallery

Re: [PHP-DB] navigation...

2001-10-03 Thread Russ Michell
Hi there deco: I'm trying to do the same thing myself (Indent posts for a message forum) Here is something I pulled off phpbuilder yesterday: Generally speaking, threading is evil. Nevertheless, I'll tell you how to do it. Store the comments in a table. Each comment should have a unique ID.

[PHP-DB] PHP4 Compile using Informix Client SDK

2001-10-03 Thread Paul Daly
Hi, I have SuSe Linux v7.2 with working versions of Apache and MySQL. The problem now is that I need to access an Informix Online v7.3 database running on a separate AIX server. This server has I-Net serving ODBC calls from Windows PC's. I've downloaded the Linux version of the Informix

[PHP-DB] mysql - php DATE QUESTION...

2001-10-03 Thread Koutsogiannopoulos Karolos
Can someone offer some help...? Lets say i have a date collumn in a mysql table that includes dates that get stored each time i enter an entry... How can i check when i enter the page that displays the entries to delete all entries older than 30 days? thanks.

RE: [PHP-DB] mysql - php DATE QUESTION...

2001-10-03 Thread Rick Emery
Check the MySQL manual DATE/TIME functions. try: DELETE FROM mytable WHERE date_column ( CURRDATE()-30 ) -Original Message- From: Koutsogiannopoulos Karolos [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 03, 2001 7:41 AM To: 'Php-Db (E-mail) Subject: [PHP-DB] mysql - php DATE

RE: [PHP-DB] mysql - php DATE QUESTION...

2001-10-03 Thread Rick Emery
sorry for misspelling: curdate() -Original Message- From: Rick Emery [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 03, 2001 8:23 AM To: 'Koutsogiannopoulos Karolos' Cc: [EMAIL PROTECTED] Subject: RE: [PHP-DB] mysql - php DATE QUESTION... Check the MySQL manual DATE/TIME

RE: [PHP-DB] Check Boxes/UPDATE

2001-10-03 Thread Matt C
I am sorry but I still really don't get it :( How do I do the array thing? _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail:

[PHP-DB] RE: CGI Urgent

2001-10-03 Thread Rick Emery
I apologize for answering a day late, but I get only the digest version of this list. If you can use PHP instead of PERL, the following article will point you in the right direction. If you cannot use PHP, this article should provide you with the background knowledge you need to send the

RE: [PHP-DB] Check Boxes/UPDATE

2001-10-03 Thread Rick Emery
for( $i=0; $i3; $i++ ) { if( isset($chkAuthStatus[$i]) ) { do something } } -Original Message- From: Matt C [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 03, 2001 10:17 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Check

RE: [PHP-DB] Check Boxes/UPDATE

2001-10-03 Thread Jason Wong
-Original Message- From: Matt C [mailto:[EMAIL PROTECTED]] Sent: 03 October 2001 23:17 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Check Boxes/UPDATE I am sorry but I still really don't get it :( How do I do the array thing? Please specify *which* part you don't

RE: [PHP-DB] Cybercash? or Who?

2001-10-03 Thread Ricky Theil
I just recently started using Cardservice International for all my precessing. The only drawback was that I had to purchase an API wrapper, but it is a PHP wrapper. It was $95. It's extremely fast, and easy to use. Documentation isn't the best, but their support is awesome! Ricky

RE: [PHP-DB] Bug in new PHP Version?

2001-10-03 Thread Ricky Theil
Looks like you've got the answer to your question, right there use mysql_select_db() and mysql_query() instead. I use 4.06 and have never used the mysql_db_query function. -Original Message- From: Luditus [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 03, 2001 2:13 AM To:

RE: [PHP-DB] Performance boosting

2001-10-03 Thread Ricky Theil
There is a certain amount of the script that the browser can display before the script is done loading. I'm not sure exactly how much that is, but I've seen this before. I wrote a script that pulls info out of a mssql DB, and it shows the top part of my script while pulling DB info. It's

Re: [PHP-DB] Performance boosting

2001-10-03 Thread John Lim
You need to break up your web page into several independant html tables, not nested tables. Each independant table will be rendered progressively as it downloads. That's the effect you are seeing. -John Ricky Theil [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...

Re: [PHP-DB] Cybercash? or Who?

2001-10-03 Thread Raquel Rice
On Wed, 3 Oct 2001 09:49:20 -0600 Ricky Theil [EMAIL PROTECTED] wrote: I just recently started using Cardservice International for all my precessing. The only drawback was that I had to purchase an API wrapper, but it is a PHP wrapper. It was $95. It's extremely fast, and easy to use.

RE: [PHP-DB] Cybercash? or Who?

2001-10-03 Thread Rick Emery
www.cardservice.com -Original Message- From: Raquel Rice [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 03, 2001 1:29 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Cybercash? or Who? On Wed, 3 Oct 2001 09:49:20 -0600 Ricky Theil [EMAIL PROTECTED] wrote: I just recently

[PHP-DB] Cgi Timeout

2001-10-03 Thread Sharif Islam
I just installed php in W2k I am getting this error: CGI Timeout The specified CGI application exceeded the allowed time for processing. The server has deleted the process. According to the readme file I added the .php extension in IIS. Anything else needed to be done? thanks ) ((

[PHP-DB] what's the current URL

2001-10-03 Thread Francisco Carvalho
Is there a way for PHP to know the current URL? I have am include file that a TOC, I want to change the color of a specific link in the TOC to ilustrate that that is the corrent page the user is at. Any sugestions? Thanks a bunch :-) Franky

[PHP-DB] Re: PHP and MS Access

2001-10-03 Thread Carlos Augusto Abarca
This is absolutely not true. Although there isn´t a direct way to connect to Access from PHP (like you can do with PosgresSQL) you may connect to access using an ODBC connection. The only thing they have to do is Configure an ODBC DSN in their server pointing to your specific DB file and that´s

[PHP-DB] ODBC Security

2001-10-03 Thread Carlos Augusto Abarca
Hi everyone. I need some help with configuring the ODBC to access an MS Access DB on a Windows NT server with . Can anyone tell me exactly how the Username and Password features work when configuring an ODBC System Connection? I tryed using this feature when configuring the System DSN for the

RE: [PHP-DB] what's the current URL

2001-10-03 Thread Ricky Theil
Use the phpinfo(); function to show you all the environment variables. i.e. the current file URL w/o the query string on it is $PHP_SELF Ricky -Original Message- From: Francisco Carvalho [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 03, 2001 2:51 PM To: '[EMAIL PROTECTED]'

Re: [PHP-DB] what's the current URL

2001-10-03 Thread Sheridan Saint-Michel
I don't think there is a predefined variable that actually contains the URL as it appears in the user's address bar, but it would be easy to make a URL from the Globals. Check the variables listed on your server in a phpinfo. It will probably be as simple as: $url = http://; . $HTTP_HOST .

RE: [PHP-DB] what's the current URL

2001-10-03 Thread Ricky Theil
$PHP_SELF returns the full URL of the current script. i.e. $PHP_SELF http://domain.com/script.php -Original Message- From: Sheridan Saint-Michel [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 03, 2001 3:30 PM To: Francisco Carvalho; [EMAIL PROTECTED] Subject: Re: [PHP-DB] what's

RE: [PHP-DB] what's the current URL

2001-10-03 Thread Francisco Carvalho
Thanks all. $PHP_SELF worked fine. -Original Message- From: Ricky Theil [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 03, 2001 2:37 PM To: Ricky Theil; 'Sheridan Saint-Michel'; Francisco Carvalho; [EMAIL PROTECTED] Subject: RE: [PHP-DB] what's the current URL I apologize... I'm

[PHP-DB] Re: collecting a variable value from SQL*Plus

2001-10-03 Thread Patrick ONeill
Bona, You are trying to perform an SQL*PLUS command. I think you can only perform SQL commands with OCI. You can print a ref cursor in SQL*PLUS but you have to handle it differently with OCI. Look at the PHP reference manual for ocinewcursor. Good Luck, Pat [EMAIL PROTECTED] wrote: Hi