Re: [PHP-DB] Why the sudden dis-interest?

2012-09-23 Thread Govinda
What's with all the people suddenly wanting to unsubscribe? Did they suddenly become experts - no longer needing the community for support? Or did they suddenly discover they had actually enlisted for the influx of emails they were getting and wanted to stop them? Sure seems odd

[PHP-DB] Why the sudden dis-interest?

2012-09-21 Thread Jim Giner
What's with all the people suddenly wanting to unsubscribe? Did they suddenly become experts - no longer needing the community for support? Or did they suddenly discover they had actually enlisted for the influx of emails they were getting and wanted to stop them? Sure seems odd -- PHP

Re: [PHP-DB] Why the sudden dis-interest?

2012-09-21 Thread Rikin Parekh
I am happy with this community. I get a lot of new things to learn daily. On Fri, Sep 21, 2012 at 10:07 AM, Jim Giner jim.gi...@albanyhandball.comwrote: What's with all the people suddenly wanting to unsubscribe? Did they suddenly become experts - no longer needing the community for support?

Re: [PHP-DB] Why the sudden dis-interest?

2012-09-21 Thread tebz_jeyam navam
Subject: Re: [PHP-DB] Why the sudden dis-interest? I am happy with this community. I get a lot of new things to learn daily. On Fri, Sep 21, 2012 at 10:07 AM, Jim Giner jim.gi...@albanyhandball.comwrote: What's with all the people suddenly wanting to unsubscribe?  Did they suddenly become experts

Re: [PHP-DB] Why the sudden dis-interest?

2012-09-21 Thread tamouse mailing lists
Some of them may not end up being PHP + DB programmers? Or joined under mistaken expectations? Or thought it might be a good idea at the time and ended up doing something else? Lots of possible reasons. Given the inability of the folk to figure out *how* to unsubscribe, I'd suspect rather limited

Re: [PHP-DB] Why the sudden dis-interest?

2012-09-21 Thread David McGlone
On Friday, September 21, 2012 10:07:56 AM Jim Giner wrote: What's with all the people suddenly wanting to unsubscribe? Did they suddenly become experts - no longer needing the community for support? Or did they suddenly discover they had actually enlisted for the influx of emails they were

[PHP-DB] why didn't errors show up

2008-11-23 Thread Fred Silsbee
OK I had to (thanks to Jack Nav Zanen) (1) remove the ; off the sql statement (2) change ' to but why did NOTHING appear on the browser screen? ?php // File: anyco.php $db = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SID =

[PHP-DB] Why $row is EMPTY

2008-04-29 Thread Nasreen Laghari
Hi, Why my program is not going in while loop? When I run the same query in SQL cmd, it brings result but here when I print $result gives Resouce ID number means $result has data then why $row is empty. $query = 'SELECT * FROM `gig` LEFT JOIN genre ON gig.genreId=genre.genreId LEFT JOIN venue

Re: [PHP-DB] Why $row is EMPTY

2008-04-29 Thread Jon L.
I could be wrong, but I don't think table aliases continue to exist in PHP; only the column names. $g_name = $row[gigName]; $vname = $row[venueName]; $genre = $row[name]; You may also consider revising the query to only grab the columns you need, using an alias for at least

Re: [PHP-DB] Why $row is EMPTY

2008-04-29 Thread Ken Keefe
Try doing print_r($row); in your while loop and see what exactly is in that array. Ken On Tue, Apr 29, 2008 at 1:46 PM, Jon L. [EMAIL PROTECTED] wrote: I could be wrong, but I don't think table aliases continue to exist in PHP; only the column names. $g_name = $row[gigName];

Re: [PHP-DB] Why $row is EMPTY

2008-04-29 Thread Chris
Nasreen Laghari wrote: Hi, Why my program is not going in while loop? When I run the same query in SQL cmd, it brings result but here when I print $result gives Resouce ID number means $result has data then why $row is empty. No, it means the query worked. If it wasn't a resource it would be

[PHP-DB] why are you deleting my post?

2005-09-27 Thread argoo
QUIT -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DB] Why does this code/query hang time out ?

2005-04-03 Thread -{ Rene Brehmer }-
... inline ... for ease: At 23:53 31/03/2005, Juffermans, Jos wrote: So far, I have found a few mistakes in your SQL: $query .= OR `variant` LIKE '%.$_GET['search'].%'; Why do you have backtick-quotes around variant? Know that backticks are used to call system commands. You also use these

[PHP-DB] Why does this code/query hang time out ?

2005-03-31 Thread -{ Rene Brehmer }-
Hi gang My CPU database (http://metalbunny.net/computers/cpudb.php) - still a work in progress - used to be in 1 table, but for several reasons I've decided it's better to split the data into multiple related tables. Obviously this means I have to rewrite the query tool for it, and that's where

RE: [PHP-DB] Why does this code/query hang time out ?

2005-03-31 Thread Juffermans, Jos
AND model.modelName LIKE '%a%';DELETE * FROM model;SELECT * FROM model WHERE something LIKE '%a OR VARIANT You can't trust incoming variables. Jos -Original Message- From: -{ Rene Brehmer }- [mailto:[EMAIL PROTECTED] Sent: 31 March 2005 23:43 To: php-db@lists.php.net Subject: [PHP-DB] Why

[PHP-DB] Why not ?

2005-03-24 Thread JeRRy
Why does this NOT work? UPDATE tipping SET score = 3 WHERE round1.game1 = H AND tipping.username = jerry; Please inform? J Find local movie times and trailers on Yahoo! Movies. http://au.movies.yahoo.com -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP-DB] Why not ?

2005-03-24 Thread Larry E . Ullman
Why does this NOT work? UPDATE tipping SET score = 3 WHERE round1.game1 = H AND tipping.username = jerry; For starters, you should quote strings in a query. There may also be a problem with the round1 reference. Larry -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP-DB] Why not ?

2005-03-24 Thread Martin Norland
JeRRy wrote: Why does this NOT work? UPDATE tipping SET score = 3 WHERE round1.game1 = H AND tipping.username = jerry; Please inform? You're not linking table round1 to table tipping in any way, and you've got some quoting issues. something like this: UPDATE tipping SET score=3 WHERE

Re: [PHP-DB] Why not ?

2005-03-24 Thread JeRRy
--- Larry E. Ullman [EMAIL PROTECTED] wrote: Why does this NOT work? UPDATE tipping SET score = 3 WHERE round1.game1 = H AND tipping.username = jerry; For starters, you should quote strings in a query. There may also be a problem with the round1 reference. Larry I was

RE: [PHP-DB] Why not ?

2005-03-24 Thread Bastien Koert
missing single quotes around text UPDATE tipping SET score = 3 WHERE round1.game1 =' H' AND tipping.username = 'jerry'; bastien From: JeRRy [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] Why not ? Date: Fri, 25 Mar 2005 04:05:28 +1100 (EST) Why does this NOT work? UPDATE tipping SET

Re: [PHP-DB] Why not ?

2005-03-24 Thread Simon Rees
On Thursday 24 March 2005 17:26, JeRRy wrote: I was getting an error earlier stating round1 does not exist, however it does. round1 table does not exist. So does not say round1.game1 does not exist. Does a table named round1 exist in your database? If so and you are using mysql 4.0.4 you

[PHP-DB] Why isn't this working?

2005-02-26 Thread Chris Payne
Hi everyone, Im trying to split a string by comma, but its not working, can you see any reason that the below doesnt work? $keywords = preg_split(',','$Agent_Rep'); Thanks Chris No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.300 / Virus

Re: [PHP-DB] Why isn't this working?

2005-02-26 Thread Rasmus Lerdorf
Chris Payne wrote: Hi everyone, Im trying to split a string by comma, but its not working, can you see any reason that the below doesnt work? $keywords = preg_split(',','$Agent_Rep'); Not sure why you sent this to php-db, but have another look at the preg_split documentation. You need

Re: [PHP-DB] Why isn't this working?

2005-02-26 Thread graeme
For more efficient code try the explode() function (You really only want to use the regular expression functions for complex pattern matching, looking for a comma is about as simple as it gets so use the standard string functions) explode (',',$Agent_Rep); graeme. Rasmus Lerdorf wrote: Chris

[PHP-DB] why is it so?

2004-12-30 Thread Nayyar Ahmed
Hello All, I am unable to understand when I execute etc.php, it give me the error Warning: session_start(): Cannot send session cache limiter - headers already sent . can you solve this leral ? TIA -- Nayyar Ahmad Lecturer Faculty Of Computer Science, Institute Of Management Sciences,

RE: [PHP-DB] why is it so?

2004-12-30 Thread R. Van Tassel
AM To: php-db@lists.php.net Subject: [PHP-DB] why is it so? Hello All, I am unable to understand when I execute etc.php, it give me the error Warning: session_start(): Cannot send session cache limiter - headers already sent . can you solve this leral ? TIA -- Nayyar Ahmad Lecturer Faculty

RE: [PHP-DB] why is it so?

2004-12-30 Thread Bastien Koert
in this page somwhere, or perhaps in an include, there is a blank space or some html echoed out to the page bastien From: Nayyar Ahmed [EMAIL PROTECTED] Reply-To: Nayyar Ahmed [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] why is it so? Date: Thu, 30 Dec 2004 20:56:21 +0500 Hello

FW: [PHP-DB] why is it so?

2004-12-30 Thread Darryl
@lists.php.net Subject: [PHP-DB] why is it so? Hello All, I am unable to understand when I execute etc.php, it give me the error Warning: session_start(): Cannot send session cache limiter - headers already sent . can you solve this leral ? TIA -- Nayyar Ahmad Lecturer Faculty Of Computer

RE: [PHP-DB] Why does this conditional run, even if not true?

2004-10-09 Thread Karen Resplendo
determines if the code runs, right? Are you sure the code is returning YES? Maybe post the code for the function bastien From: Karen Resplendo To: [EMAIL PROTECTED] Subject: [PHP-DB] Why does this conditional run, even if not true? Date: Fri, 8 Oct 2004 18:33:02 -0700 (PDT) $c is a field

[PHP-DB] Why does this conditional run, even if not true?

2004-10-08 Thread Karen Resplendo
$c is a field in an array I have loaded in from a text file. For some reason, none of the conditionals branch off and I end up printing out error messages for every row in the text file. My brackets are balanced, I just didn't include the bottom part: If ($c==9) {

RE: [PHP-DB] Why does this conditional run, even if not true?

2004-10-08 Thread Bastien Koert
hard to say without the code for the function...what is returned by the fuction determines if the code runs, right? Are you sure the code is returning YES? Maybe post the code for the function bastien From: Karen Resplendo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [PHP-DB] Why does

[PHP-DB] Why varying functionality across php db apis for db metadata?

2003-09-16 Thread Mike Klein
For example, php mysql library supports list_dbs and list_tables commands as well as getting table metadata. MySQL sql also 'natively' supports these commands (show databases, show tables, describe tableName). Why not similar commands for Oracle, SQLServer, etc.? These are simply selects against

[PHP-DB] WHY need to query 2x to get results

2003-07-22 Thread Ow Mun Heng
Hi, I have a code that goes like this. Scroll down to the -- sign. How come I need another $result = mysql_query($sql) at that location? If I don't have it, the results coming out will only start printing from the 2nd Row.. Omitting the 1st. Results as wanted row 1

Re: [PHP-DB] WHY need to query 2x to get results

2003-07-22 Thread Terry Riley
Because you have already fetched one row before outputting the record count. Therefore the row pointer is at the second record before you 'print out'. Try putting mysql_data_seek($result,0); in place of your second $result = mysql_query($sql); This should return the pointer to the first

[PHP-DB] why script only updating one table?

2003-07-22 Thread Aaron Wolski
Hi All, I have a form that passes to select box array to my script. Select boxes are named: patternThreads[] and patternFabrics[] My Script: //Check to see if Threads were selected for this pattern if ($patternThreads) { if (is_array($patternThreads)) {

RE: [PHP-DB] why script only updating one table? SOLVED

2003-07-22 Thread Aaron Wolski
To: [EMAIL PROTECTED] Subject: [PHP-DB] why script only updating one table? Hi All, I have a form that passes to select box array to my script. Select boxes are named: patternThreads[] and patternFabrics[] My Script: //Check to see if Threads were selected for this pattern if ($patternThreads

RE: [PHP-DB] WHY need to query 2x to get results

2003-07-22 Thread Ow Mun Heng
/M Engineering Western Digital M'sia DID : 03-7870 5168 -Original Message- From: Terry Riley [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 22, 2003 7:33 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] WHY need to query 2x to get results Because you have already fetched one row before

[PHP-DB] Why old session poping up in new Browser window

2003-07-11 Thread Sourabh G
Hi, Session problem. I am getting a weird session problem in my site. Background of the Problem: -- My site use sessions for user authentication. Site has a Admin Panel where admin can search users and then through a link (which has login and password appended) login as

[PHP-DB] Why NOT you ?

2003-03-24 Thread Khim
Dear Online Business Opportunity Seekers Why CCI ? CCI, Core Club International is a 3 year old, Federally registered non-profit humanitarian aid, corporation. Federal EIN # 93-1324671 State Reg. # 036394-99 Established April 17, 2000 CCI was set up to help eradicate poverty in the world

[PHP-DB] Why would this query behave this way??

2002-10-02 Thread Owen Parker
hi all this query: SELECT updates.MODELCODE, SETNO, FRPICNO, TOPICNO, CPOSTDATE, MODELNAME, ZIPFILENAME, TOTPICS FROM updates, models WHERE updates.MODELCODE = models.MODELCODE AND CPOSTDATE = CURDATE() AND CPOSTDATE = ( CURDATE() - 14 ) ORDER BY CPOSTDATE LIMIT 0, 30 worked perfectly until

[PHP-DB] why do i get this error please tell me?

2002-08-31 Thread Victor
for($i = 0; $i sizeof($check); $i++) { # start repating query # turn pictures in order delete capability off mysql_query(UPDATE kodak_user_pictures SET order=1 WHERE ID='$check[$i]') # turn off pictures or die ('Unable to turn bit off '.mysql_error()); } # end repeat You have an error in your

Re: [PHP-DB] Why do these values not match?

2002-06-26 Thread Manuel
Any idea why this problem does not manifest itself in Foxpro, Excel or Visual Basic? Pierre-Alain Joye wrote:On Tue, 25 Jun 2002 18:14:13 -0700 wrote: IEEE standard is precision to 6 decimal places. Having an epsilon of 2 is ridiculously small, and well under the IEEE / ANSI standard.

Re: [PHP-DB] Why do these values not match?

2002-06-26 Thread Pierre-Alain Joye
On Wed, 26 Jun 2002 06:52:14 -0700 (PDT) Manuel [EMAIL PROTECTED] wrote: Any idea why this problem does not manifest itself in Foxpro, Excel or Visual Basic? This problem happens also with VB. But later :), By example if you use decimal type, smallest non-zero number is

[PHP-DB] Why do these values not match?

2002-06-25 Thread Manuel
The if statement is not working here. Does anybody know why? $total= 332.06; $production = 45.11 + 134.38 + 85.35 + 67.22; print(Total = $totalbr); print(Production = $productionbr); if($total != $production) { print(Totals do not Match!); } else { print(Totals are in Balance); }

[PHP-DB] why won't session_start() work?

2002-02-27 Thread Ryan Snow
when I do: session_start(); session_register('signor'); session_register('username'); I get: Warning: Cannot send session cookie - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/index.php on line 14 Warning: Cannot send

RE: [PHP-DB] why won't session_start() work?

2002-02-27 Thread Beau Lebens
PROTECTED]] // Sent: Thursday, 28 February 2002 9:06 AM // To: [EMAIL PROTECTED] // Subject: [PHP-DB] why won't session_start() work? // // // // when I do: // session_start(); // session_register('signor'); // session_register('username'); // // // I get: // // Warning

[PHP-DB] Why NULL?

2002-02-01 Thread Zach Curtis
I have a loop process that reads a record out of a flat file, stores the data for a given record in an array, writes the record to the db, resets the data in the array, then iterates again thru the loop. Not every record has a value for each field. For example, Not every record has a value for

RE: [PHP-DB] Why NULL?

2002-02-01 Thread Zach Curtis
Yes, I did not receive any replies to that message yesterday. Here is my code (condensed) as well. What ends up happening is that when I write a variable for a field that did have data, for example cus034a, to the db it shows a value of 0 when I intended it to be NULL. Thanks. Zach # partial

Re: [PHP-DB] Why the following error, yet it works anyway

2002-01-15 Thread Miles Thompson
Chip, You're not going to like this .. on the delete you aren't fetching any rows. Miles At 09:18 AM 1/14/2002 -0800, [EMAIL PROTECTED] wrote: I have the following short web page to delete dealer bulletins from a database. My page lists all the bulletins in the database - id and subject. There

[PHP-DB] Why the following error, yet it works anyway

2002-01-14 Thread chip . wiegand
I have the following short web page to delete dealer bulletins from a database. My page lists all the bulletins in the database - id and subject. There is a text input field to enter the bulletin id number and hit the delete button, and the bulletin is deleted. It works except after the submit

RE: [PHP-DB] Why the following error, yet it works anyway

2002-01-14 Thread Rick Emery
:18 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Why the following error, yet it works anyway I have the following short web page to delete dealer bulletins from a database. My page lists all the bulletins in the database - id and subject. There is a text input field to enter the bulletin id number

RE: [PHP-DB] Why the following error, yet it works anyway

2002-01-14 Thread chip . wiegand
the submit button is not pushed (on returning to the page)? -- Chip -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, January 14, 2002 11:18 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Why the following error, yet it works anyway I have the following

RE: [PHP-DB] Why use MySQL with PHP

2001-11-16 Thread Nally, Tyler G.
: Thursday, November 15, 2001 6:02 PM To: B. van Ouwerkerk; [EMAIL PROTECTED] Subject: Re: [PHP-DB] Why use MySQL with PHP Tell me about it. You ever try running php.net through http://validator.w3.org ? It's not pretty. Sheridan Saint-Michel Website Administrator FoxJet, an ITW

Re: [PHP-DB] Why use MySQL with PHP

2001-11-16 Thread Sheridan Saint-Michel
: Sheridan Saint-Michel [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 15, 2001 6:02 PM To: B. van Ouwerkerk; [EMAIL PROTECTED] Subject: Re: [PHP-DB] Why use MySQL with PHP Tell me about it. You ever try running php.net through http://validator.w3.org ? It's not pretty

[PHP-DB] Why use MySQL with PHP

2001-11-15 Thread søren eriksen
Hi everybody I'm writing a synopsis about PHP and mySQL. I'm hoping someone can help me, and tell me why the combination og PHP and MySQL is so common. What makes MySQL such a good choice when using PHP? What seperates MySQL from others dbms? -Søren Eriksen- -- PHP Database Mailing List

RE: [PHP-DB] Why use MySQL with PHP

2001-11-15 Thread Richard Hillström (GIS)
9:34 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Why use MySQL with PHP Hi everybody I'm writing a synopsis about PHP and mySQL. I'm hoping someone can help me, and tell me why the combination og PHP and MySQL is so common. What makes MySQL such a good choice when using PHP? What seperates MySQL

Re: [PHP-DB] Why use MySQL with PHP

2001-11-15 Thread PHPGalaxy.com
My reasons: 1) Heard of Oracle, didnt know it was a database program 2) Never heard of PostgreSQL 3) MySQL is the most talked about, from what I've seen, so there's plenty of people to get help from 4) It's free. 5) It runs in Windows 5) NASA uses it, or so their site says 6) It works! So I've no

RE: [PHP-DB] Why use MySQL with PHP

2001-11-15 Thread matt stewart
, it's free, it's easy, and it does the job! -Original Message- From: søren eriksen [mailto:[EMAIL PROTECTED]] Sent: 15 November 2001 20:34 To: [EMAIL PROTECTED] Subject: [PHP-DB] Why use MySQL with PHP Hi everybody I'm writing a synopsis about PHP and mySQL. I'm hoping someone can help me

RE: [PHP-DB] Why use MySQL with PHP

2001-11-15 Thread Lars B. Jensen
: Re: [PHP-DB] Why use MySQL with PHP My reasons: 1) Heard of Oracle, didnt know it was a database program 2) Never heard of PostgreSQL 3) MySQL is the most talked about, from what I've seen, so there's plenty of people to get help from 4) It's free. 5) It runs in Windows 5) NASA uses

Re: [PHP-DB] Why use MySQL with PHP

2001-11-15 Thread PHPGalaxy.com
par år med PHP / mySQL for firmaer som TDC KabelTV og lign. -Original Message- From: PHPGalaxy.com [mailto:[EMAIL PROTECTED]] Sent: 15. november 2001 20:38 To: søren eriksen Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Why use MySQL with PHP My reasons: 1) Heard of Oracle

RE: [PHP-DB] Why use MySQL with PHP

2001-11-15 Thread Lars B. Jensen
would eliminate my need for Microsoft SQL Server. / Lars -Original Message- From: matt stewart [mailto:[EMAIL PROTECTED]] Sent: 15. november 2001 20:45 To: 'søren eriksen'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Why use MySQL with PHP The main reasons are possibly later on its

RE: [PHP-DB] Why use MySQL with PHP

2001-11-15 Thread matt stewart
be slower? -Original Message- From: Lars B. Jensen [mailto:[EMAIL PROTECTED]] Sent: 15 November 2001 12:19 To: matt stewart Cc: [EMAIL PROTECTED] Subject: RE: [PHP-DB] Why use MySQL with PHP Stored procedures is missing in mySQL correct but is scheduled with the exiting launch of the mySQL 4

RE: [PHP-DB] Why use MySQL with PHP

2001-11-15 Thread Lars B. Jensen
. Jensen'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Why use MySQL with PHP sounds wonderful - do you know when (roughly) it's gonna be released? I thought that one of the reasons it was so fast was that the DB engine wasn't cluttered with procedures? (which is why it's so damn good for not-so

Re: [PHP-DB] Why use MySQL with PHP

2001-11-15 Thread PHPGalaxy.com
. Jensen'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Why use MySQL with PHP sounds wonderful - do you know when (roughly) it's gonna be released? I thought that one of the reasons it was so fast was that the DB engine wasn't cluttered with procedures? (which is why it's so damn good

Re: [PHP-DB] Why use MySQL with PHP

2001-11-15 Thread B. van Ouwerkerk
I just remembered, the only bad thing I can think of about MySQL... their website locks up Netscape =) PHP qualifies for this too. www.php.net looks pretty messy in NS. By the way, both doesn't break NS.. Bye, B. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP-DB] Why use MySQL with PHP

2001-11-15 Thread Sheridan Saint-Michel
time look some of these programs up). Sheridan Saint-Michel Website Administrator FoxJet, an ITW Company www.foxjet.com - Original Message - From: søren eriksen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 15, 2001 2:34 PM Subject: [PHP-DB] Why use MySQL with PHP Hi

Re: [PHP-DB] Why use MySQL with PHP

2001-11-15 Thread Kodrik
www.foxjet.com - Original Message - From: søren eriksen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 15, 2001 2:34 PM Subject: [PHP-DB] Why use MySQL with PHP Hi everybody I'm writing a synopsis about PHP and mySQL. I'm hoping someone can help me, and tell me why

Re: [PHP-DB] Why use MySQL with PHP

2001-11-15 Thread Grant Johnson
I mostly agree, although I prefer PostgreSQL for the transactions, better row locking, and server side cursors. It also does better with lotsa users (if the data isn't just used for the web, this is important). I have used many languages for this stuff, and the one with the best balance of

Re: [PHP-DB] Why use MySQL with PHP

2001-11-15 Thread Sheridan Saint-Michel
, November 15, 2001 12:28 PM Subject: Re: [PHP-DB] Why use MySQL with PHP I just remembered, the only bad thing I can think of about MySQL... their website locks up Netscape =) PHP qualifies for this too. www.php.net looks pretty messy in NS. By the way, both doesn't break NS.. Bye, B

[PHP-DB] Why do 95% of internet business fail only 5% succeed

2001-10-31 Thread Shaun
Dear Entrepreneur: Can you honestly say that you're earning the type of income you thought you would when you first began your networking career? Unfortunately, the history of networking says that there's a 95% chance you are not earning what you would like to earn. How many different

[PHP-DB] why mysql.com down

2001-06-24 Thread TomazSa
Part of the VA Linux / OSDN / Exodus outage, there's a story on /. about it: http://slashdot.org/articles/01/06/24/2246202.shtml lp, tomaz

[PHP-DB] Why?

2001-06-19 Thread Chadwick Rolfs
Why do I recieve, but cannot post. I keep getting permanent errors from the mailer daemons. Sorry, I don't have a copy of the last one, but I don't think this message will go through Chadwick Rolfs -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

[PHP-DB] Why mysql function in php don't support prepare statement?

2001-03-27 Thread Carfield Yim
As title, I can't have some query like "insert into table (a, b, c) where (?, ?, ?) and then fill the value in the loop. This kind of statement often have better performance, why php don't support this? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL