[PHP-DB] Re: Limit problem

2001-09-16 Thread Hidulf
for next page, you can use limit 10,10 the limit using in page is in the formula limit (pagesize x page),(pagesize) -- Hidulf http://www.hidulf.com Its Me [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... i wanna limit the result for 10 records per page. if anyone

[PHP-DB] Re: Extension loading problem

2001-09-16 Thread Robert W. Biddle
Got it fixed... for those curious, the extension_dir path was correct, I had to copy ntwdblib.dll to c:\WINNT\system32\ and it recognizes the extension now, and works great Robert W. Biddle [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I'm running IIS 5.0

[PHP-DB] PHP Programmer Forum

2001-09-16 Thread Nagasea
is there any web based forum for PHP and SQl other than this mailing list ? _ www.kaskus.com - FREE EMAIL SERVICE -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: [PHP-DB] PHP Programmer Forum

2001-09-16 Thread Deryck Henson
If you mean one you can download, www.phpbb.com is a great one. If you are talking interaction with people, like this, try looking here: http://sourceforge.net/forum/?group_id=1 . You might find a forum for you there. Other than that, just search google, using the in the beginning of your

[PHP-DB] order by group by...

2001-09-16 Thread hassan el forkani
hi, i am trying to build a message board in php with mysql as back end; what i want to do is to query the database in a certain way that the result is returned in the correct order for php to display the discussion thread properly here is my table structure: mysql show fields from posts - ;

[PHP-DB] MySQL Connection FailedL

2001-09-16 Thread Andres Figari
Hi, I'm trying to get IRM to work with my MySQL server. IRM uses php3. It worked for a bit (entry 30 form the MySQL log as shown below). Suddenly, affter fidling with (i believe this is what it was) the file php.ini I know get this: Warning: MySQL Connection Failed: Access denied for user:

[PHP-DB] Stupid question=p

2001-09-16 Thread Glenn B.
Am I able to make a field an array in MySQL? Thanks. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP-DB] Stupid question=p

2001-09-16 Thread Andreas Landmark
On Sun, Sep 16, 2001 at 03:43:32PM -0400, Glenn B. wrote: Am I able to make a field an array in MySQL? Thanks. What exactly do you mean? Do you want to fetch fields in arrays or do you want store/retrieve the contents of a field and use that as an array? The former: ---

Re: [PHP-DB] Stupid question=p

2001-09-16 Thread Justin Buist
Not natively ... but you can with pstgreSQL. Justin Buist Trident Technology, Inc. 4700 60th St. SW, Suite 102 Grand Rapids, MI 49512 Ph. 616.554.2700 Fx. 616.554.3331 Mo. 616.291.2612 On Sun, 16 Sep 2001, Glenn B. wrote: Am I able to make a field an array in MySQL? Thanks. -- PHP

[PHP-DB] Quotes, double-quotes, and the like.

2001-09-16 Thread Ari M. Roth
I'm trying to create a web-based interface that will allow me to save essays to a mySQL database for display on a website. The problem is that it may include HTML in it, so I need to preserve double-quotes in their original context. Right now, they are not encoding correctly for some reason.

[PHP-DB] mail ()

2001-09-16 Thread Andrius Jakutis
Hello, How to make field required? Using mail () Thanks. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-DB] Add text to one table in database

2001-09-16 Thread Nagasea
I had 1 database with 3 table inside. And Now I want to add text thru a form in browser to the last table (table number 3). anybody here can tell me ? _ www.kaskus.com - FREE EMAIL SERVICE -- PHP Database Mailing List

Re: [PHP-DB] Add text to one table in database

2001-09-16 Thread Deryck Henson
Use this SQL Statement: sqlinsert = INSERT INTO table3 (column1, column2) VALUES ('value1', 'value2') Do what you want with the forms. sqlinsert = INSERT INTO table3 (col1, col2) VALUES ('$datastring1', '$datastring2') Hope that helps - Deryck H - http://www.comp-u-exchange.com -

[PHP-DB] Re: ODBC DataBase Paging Solution

2001-09-16 Thread Manuel Lemos
Hello Veniamin, On 14-Sep-01 06:29:52, you wrote: Do somebody has a paging solution for ODBC connection ? Sure, try Metabase and this PHP class that can do all you need displaying results in HTML tables with links to go back and forth between result pages. Metabase

[PHP-DB] [newbie] MP3 Tags

2001-09-16 Thread pjc
I'm trying to develop my own application to fool around with MP3s, and I'm having trouble getting started. I need to know how I can tear through directories on a machine and grab fields from the MP3 ID tags (artist, album, song title, etc.). If anyone can point me in the right direction, it

RE: [PHP-DB] [newbie] MP3 Tags

2001-09-16 Thread Matthew Loff
You'll have to take care of the recursive directory walking function... Here's code I found to get the ID3 tag from an MP3 file: http://px.sklar.com/code.html?code_id=429 --Matt -Original Message- From: pjc [mailto:[EMAIL PROTECTED]] Sent: Monday, September 17, 2001 12:13 AM To: