[PHP-DB] how to create html tables in php

2001-12-29 Thread Sander Peters
Hello, I made a database with bookmarks, these bookmarks are catogarized by type. Now I want to display those bookmarks in tables by category. This works already fine. The only problem I have is that the tables are very difficult to handle. I want to make 4 tables in a row (so that will be 4

[PHP-DB] odbc insert

2001-12-29 Thread George Nicolae
pls help me with syntax for insert into mdb via odbc. -- Best regards, George Nicolae IT Manager ___ X-Playin - Professional Web Design www.x-playin.f2s.com -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP-DB] Re: odbc insert

2001-12-29 Thread George Nicolae
it's OK. I did it. -- Best regards, George Nicolae IT Manager ___ X-Playin - Professional Web Design www.x-playin.f2s.com George Nicolae [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... pls help me with syntax for insert into mdb via odbc.

[PHP-DB] Re: [PHP] how to create html tables in php

2001-12-29 Thread DL Neil
Hi Sander, I made a database with bookmarks, these bookmarks are catogarized by type. Now I want to display those bookmarks in tables by category. This works already fine. The only problem I have is that the tables are very difficult to handle. I want to make 4 tables in a row (so that

[PHP-DB] Current User Count

2001-12-29 Thread keTTle_drum
Is it possible to get a current user count in php like it is in ASP. By this i mean like saying There are currently 32 people on this site and if so how can it be done?? I know i could simply increment a database with a mysql query, but im un sure about how to decrement it when a user leaves the

[PHP-DB] Iinserting into 250 tables filtered data automaticly. delaytime??

2001-12-29 Thread Andy
Hi guys, I would like to split a table of 2.3mill entries into 250 single ones. They contain countrycodes and I created automaticly 250 tables named after this codes. So far so good... No I would like to insert via php the data into the tables. The problem is, that the querry takes to much time

Re: [PHP-DB] Iinserting into 250 tables filtered data automaticly. delaytime??

2001-12-29 Thread Bogdan Stancescu
You actually have a time-out problem on exec_stmt(), because the for() can't loop without executing all of the statements within. You may want to start looking for ways to increase the time php waits for mysql to execute a query. Just to make sure I'm not senselessly babbling here, what does