Odp: [PHP-DB] Text Control.

2001-01-14 Thread Jarek Zgoda
Od: "simon" <[EMAIL PROTECTED]> Temat: Re: [PHP-DB] Text Control. > Ian wrote: > > > Dear Sir / Madam, > > > > Problem :- > > Data from HTML > WRAP="virtual"> is likes, > > This is a testing messages:- > > 1. MSG A. > > 2. MSG B. > > 3. MSG C. > > > > So, I insert $t

[PHP-DB] Desperate Help needed

2001-01-14 Thread sarahana
Hi, I made a database chatroom that seemed to be working perfectly fine - now, it seems, if more than two people log in, the 1st person of the three automatically gets logged out - its because i tried to make an automatic log off for those who cross the window How do you detect if a person

Re: [PHP-DB] Desperate Help needed

2001-01-14 Thread Toby Butzon
Set up an expire time... if a user hasn't accessed the page showing the room's activity (where all the messages are shown) within, say, 3 minutes, then the next request that comes in, regardless of who makes it, should remove the timed-out user from the list. It's important, of course, to make su

Re: [PHP-DB] Desperate Help needed

2001-01-14 Thread George Schlossnagle
It's probably alot more efficient to set up a scheduled job which removes timed out users every minute. This keeps your 'check and see if the user is expired' code from running any more frquently than it needs to be. george Toby Butzon wrote: > > Set up an expire time... if a user hasn't acces

[PHP-DB] suscribe

2001-01-14 Thread LosMuchachos de Devez en Cuando
_ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

[PHP-DB] Problem width SQL on PHP4

2001-01-14 Thread Sebastian A. Davicco
I need to run SQL funtions on my PHP scripts, the server is an NT4 width service pack 6. I setup php4 and it working ok, but wen i want to run SQL functions (like mssql_connect()) it show me a message saying i have use a non supported funtion. Some idea ?... ill apreciate so much your help !!..

[PHP-DB] PHP "confirm" function?

2001-01-14 Thread Alarion
Ok, I am trying to add a "yes"/"no" dialog for a delete operation and I was attempting this via the javascript "confirm" function, but no matter if I click yes or no, the php code block still executes. I tried this way: - if(!confirm("Are yo

RE: [PHP-DB] Problem width SQL on PHP4

2001-01-14 Thread Alarion
you need to "enable" the mssql extension. I don't have the php.ini file here with me, but search the ini file for "extension" and you should come to a list of them that are commented out. just uncomment (by deleting the leading ";") the one for the extension you need and then shut down IIS and re

Re: [PHP-DB] PHP "confirm" function?

2001-01-14 Thread Toby Butzon
> Ok, I am trying to add a "yes"/"no" dialog for a delete operation and I was > attempting this via the javascript "confirm" function, but no matter if I > click yes or no, the php code block still executes. I tried this way: It'll work... > > if(!confirm("Are you sure you wish to delete this s

Re: [PHP-DB] Boolean values in MySQL

2001-01-14 Thread JJeffman
I'm using tinyint. If you are afraid of data volume I think char(1) with "T/F" values uses less disk space but requires more sophisticated code to deal with. Jayme. http://www.conex.com.br/jjeffman -Mensagem Original- De: Cal Evans <[EMAIL PROTECTED]> Para: <[EMAIL PROTECTED]> Enviada

Re: [PHP-DB] Desperate Help needed

2001-01-14 Thread JJeffman
You probably has configured your chat client page to make a timely refresh, so the user can get new messages every time the page is refreshed. I don't know if you allow the user to set up the refresh interval, any way you can have a logged users table with their login time and last refresh time.

Re: [PHP-DB] Re-using a result set

2001-01-14 Thread Markus Fischer
Hi, Is there some similar function available for oracle too ? thanks, Markus On Thu, Jan 11, 2001 at 03:18:25PM -0500, Finkel, Sean wrote : > Try calling: > > mysql_data_seek($connection, 0); > > then looping through again. This should reset the row pointer to the first > row

Re: [PHP-DB] Problem with oci8

2001-01-14 Thread Markus Fischer
On Fri, Jan 12, 2001 at 11:23:50PM +0100, Victor Foitzik wrote : > > I read in the FAQ that if MySql libs are linked with pthread, pthread > >should be removed from mysql libs to apache get started. I'm having also some problems with oracle too; can you point me to the FAQ where you rea

Re: [PHP-DB] Transactions. How?

2001-01-14 Thread Markus Fischer
The likest solution for you problem seems to be session. Start a session on the first page. On the next page validate every variable and if all went ok, bind it to the current session. Don't forget to make a page counter so no one can jump easily from page one to four. After your last form action

Re: [PHP-DB] search engine

2001-01-14 Thread Markus Fischer
Hi, Databases tend not to be the best solution for text index searching what you want. There are better products like glimpse that do what you want. M. On Wed, Jan 10, 2001 at 03:08:14PM +0100, Luescher Samuel (MMVZSLU) wrote : > hi there. i am currently developing an active contant eng

[PHP-DB] OCI8 and Listener

2001-01-14 Thread Stefan Fokuhl
Hi, i've compiled my php modul with oci8.But I can't connect to my db. It tells me the error ORA-12162. In the documentation there is no such error mentioned. Do I need to start to Oracle listner? Is tere somebody who had solved this problem in the past? Thanks Stefan -- PHP Database Mail