Re: [PHP-DB] Database Paging

2001-03-10 Thread Stephen
SELECT * FROM table LIMIT 0, 20 LIMIT 20, 20 LIMIT 40, 20 etc thats doing it with mysql anyways - Original Message - From: "Vipin Chandran" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, March 05, 2000 9:46 PM Subject: [PHP-DB] Database Paging > Hello, > I am presently dev

[PHP-DB] how to send file from client to server?

2001-03-10 Thread Osman Omar
Hi, How I can save data (eg. file) send by client and save it at server using form method? 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: [EMA

Re: [PHP-DB] PHP and MYSQL query

2001-03-10 Thread JJeffman
Use mysql_error() can give a hint of what is going wrong. $result = mysql_query($query) or die( mysql_error()); HTH Jayme. -Mensagem Original- De: Oson, Chris M. <[EMAIL PROTECTED]> Para: Jim Ray <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Enviada em: sábado, 10 de março de 2001 16:57

RE: [PHP-DB] PHP and MYSQL query

2001-03-10 Thread Oson, Chris M.
For starters, your statement is wrong... $result = mysql_query($strSQL, $db); where $db is your connection string to the database you already have opened. If you have problems with your sql statement, try something like this and see what your results are: $strSQL = "SELECT * FROM $TA WHERE $S

Re: [PHP-DB] help on modifications / subscribe / unsubscribe script

2001-03-10 Thread JJeffman
-Mensagem Original- De: Marc Bragg <[EMAIL PROTECTED]> Para: <[EMAIL PROTECTED]> Enviada em: sábado, 10 de março de 2001 14:46 Assunto: [PHP-DB] help on modifications / subscribe / unsubscribe script > Am using the following subscribe/unsubscribe script with great success, > but it does

RE: [PHP-DB] help on modifications / subscribe / unsubscribe script

2001-03-10 Thread Cal Evans
I'll take the easy one... #3: instead of: use Cal http://www.calevans.com -Original Message- From: Marc Bragg [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 10, 2001 11:46 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] help on modifications / subscribe / unsubscribe script Am using t

[PHP-DB] help on modifications / subscribe / unsubscribe script

2001-03-10 Thread Marc Bragg
Am using the following subscribe/unsubscribe script with great success, but it does not have all the functionality I would like. Any one have any ideas on how to: 1. open in a java window, and once info is put, and person is subscribed, java window closes and a selected http page comes up? 2.

[PHP-DB] SQL type enum

2001-03-10 Thread Vanstaen Laurent
Hi everyone, how can I know if a field in a table is of type "enum" ? and how do I get the list of possible values of such a field ? Laurent Vanstaen -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

Re: [PHP-DB] SSI and PHP?

2001-03-10 Thread Fernando Gabriel Ranea
Dear Dan, Yes, you can! In PHP you must use: or Include evaluates andd executes the code in the external. And replace just replaces the contents of the file. Regards, Dan Eskildsen wrote: > Hi there, > > Can anyone tell me if it is possible to combine Server Side Includes with > PHP? If

[PHP-DB] Kostenlos Computer, Bauteile, Zubehör, Handyzubehör und mehr !

2001-03-10 Thread Sparletterman
## Sparletterausgabe vom 09.03.2001 # 1.) Für maximal 2,- DM pro Monat Millionengewinne absahnen! 2.) Wir verschenken: Computer, Hardware, Telekommunikationswaren, Bücher und anderes! 3.) Hacker's Blackbook - Das kultige Geschenk für Computer- und Internetfreaks ! Z

[PHP-DB] Problems connecting to mysql server

2001-03-10 Thread Mark Collin
Title: Untitled Document I'm having problems connecting to my mysql server with php and cannot for the life of me find out why.  I can connect to mySQL using the console and it works fine, but i get an error connecting if i use php.  I have checked my grant tables in mySQL and they seem fine,

Re: [PHP-DB] SSI and PHP?

2001-03-10 Thread Dan Eskildsen
I meant: I would like to THANK everyone who commented on my queries the last couple of days. ""Dan Eskildsen"" <[EMAIL PROTECTED]> skrev i en meddelelse 98cvq8$7dr$[EMAIL PROTECTED]">news:98cvq8$7dr$[EMAIL PROTECTED]... > Hi there, > > Can anyone tell me if it is possible to combine Server Sid

[PHP-DB] SSI and PHP?

2001-03-10 Thread Dan Eskildsen
Hi there, Can anyone tell me if it is possible to combine Server Side Includes with PHP? If not, is there a work around? Please cc your comments to [EMAIL PROTECTED] I would like everyone who commented on my queries the last couple of days. I went from not knowing a single thing about PHP and

Re: [PHP-DB] my sql text query

2001-03-10 Thread Phil Driscoll
>Nope, you change the field to not null then it won't allow null values in >the database. Since the data already has null values, the Alter Table would >probably fail. I should have been clearer - change the text field to non-null - this will cause the null entries to become empty strings (and h

Re: [PHP-DB] PHP and MYSQL query

2001-03-10 Thread David Balatero
First, try just calling the form action like: Turning the & into & chars (maybe my mail prog formatted it like this? ...nevertheless..) Also, try doing: $result=mysql_query("select * from $TA where $SortField='%".$search."%' order by $SortField"); --- David Balatero www.icegaming.com