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

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

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 u

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

2012-09-21 Thread tebz_jeyam navam
I feel the same, I'm happy to receive all this emails as sometimes I'm able to help them and I learn new things Jey -- -Original Message- From: Rikin Parekh Date: Fri, 21 Sep 2012 14:14:03 To: Cc: Subject: Re: [PHP-DB] Why the sudden dis-interest? I am

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 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 disc

[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 D

[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 Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

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 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 lea

[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 ON

[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 th

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

2005-03-31 Thread Juffermans, Jos
es. 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 does this code/query hang & time out ? Hi gang My CPU database (http://metalbunny.net/computers/cpudb.php) - still a work in progress -

[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 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 yo

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 thi

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. > > Lar

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 round1.game1

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: http:

[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: http://www.ph

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 Pa

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

2005-02-26 Thread Rasmus Lerdorf
Chris Payne wrote: Hi everyone, I’m trying to split a string by comma, but it’s not working, can you see any reason that the below doesn’t 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

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

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

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 O

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

2004-12-30 Thread John Holmes
Nayyar Ahmed wrote: 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 ." You need to have session_start() before _any_ output to the browser (such as HTML, spaces, newlines, etc). Sessions

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

2004-12-30 Thread Nayyar Ahmed
all php code follows > ?> > > > -Original Message- > From: Nayyar Ahmed [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 30, 2004 10:56 AM > To: php-db@lists.php.net > Subject: [PHP-DB] why is it so? > > Hello All, > I am unable to understand

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

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

2004-12-30 Thread R. Van Tassel
session_start() needs to be the first piece of code at the top of the page, you must have something else before it. -Original Message- From: Nayyar Ahmed [mailto:[EMAIL PROTECTED] Sent: Thursday, December 30, 2004 10:56 AM To: php-db@lists.php.net Subject: [PHP-DB] why is it so

[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, H

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

2004-10-09 Thread Karen Resplendo
ode 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 >To: [EMAIL PROTECTED] >Subject: [PHP-DB] Why does this conditional run, even if

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 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) { If($fieldarray[3]==

[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 ). Why not similar commands for Oracle, SQLServer, etc.? These are simply selects against certain sy

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

2003-07-22 Thread Terry Riley
I think reset() is only for arrays Terry --Original Message- > It worked like a charm. (initially I was trying to use reset() guess it > was > the wrong call) > > One other thing, The 1st call was supposed to get the Column Headers > and the > second to get the results.

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 b

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

2003-07-22 Thread Aaron Wolski
: [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

[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 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 re

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

2003-07-22 Thread Jason Wong
On Tuesday 22 July 2003 18:20, Ow Mun Heng wrote: > 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 Ro

[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

[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 beg

RE: [PHP-DB] Why does this happen??

2002-10-02 Thread Jason Vincent
Sent: Wednesday, October 02, 2002 11:43 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Why does this happen?? hi all this query: SELECT updates.MODELCODE, SETNO, FRPICNO, TOPICNO, CPOSTDATE, MODELNAME, ZIPFILENAME, TOTPICS FROM updates, models WHERE updates.MODELCODE = models.MODELCODE AND CPO

[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 t

[PHP-DB] Why does this happen??

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 t

[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 yo

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 +/-0.

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.

[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 = $total"); print("Production = $production"); if($total != $production) { print("Totals do not Match!"); } else { print("Totals are in Balance"); }

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

2002-02-27 Thread Beau Lebens
d you haven't done any echo() print() or anything that sends information as output. HTH beau // -Original Message- // From: Ryan Snow [mailto:[EMAIL PROTECTED]] // Sent: Thursday, 28 February 2002 9:06 AM // To: [EMAIL PROTECTED] // Subject: [PHP-DB] why won't sessi

[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 se

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 # pa

RE: [PHP-DB] Why NULL?

2002-02-01 Thread Rick Emery
. -Original Message- From: Zach Curtis [mailto:[EMAIL PROTECTED]] Sent: Friday, February 01, 2002 9:26 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Why NULL? 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

[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 th

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. The

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

2002-01-14 Thread chip . wiegand
houldn't this fix the problem so now it will return the database list because 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:

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

2002-01-14 Thread Rick Emery
ay, January 14, 2002 11: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 e

[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 use MySQL with PHP

2001-11-16 Thread Sheridan Saint-Michel
> > It's like putting gasoline w/ water in a gas tank. It's not > the engine's fault it's spitting and sputtering. It's the > fuel supply. > > Tyler Nally > [EMAIL PROTECTED] > American Legion Website > > > -Original Message- >

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

2001-11-16 Thread Nally, Tyler G.
ECTED] American Legion Website > -Original Message- > From: 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.

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

2001-11-15 Thread Sheridan Saint-Michel
OTECTED]> Sent: Thursday, 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 me

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 f

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

2001-11-15 Thread Kodrik
L (I won't paste > any of the kludge needed to interface with CGI and DB in other languages... > but if you have some free time look some of these programs up). > > Sheridan Saint-Michel > Website Administrator > FoxJet, an ITW Company > www.foxjet.com > > > - Orig

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

2001-11-15 Thread Sheridan Saint-Michel
guages... but if you have some free 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, Novem

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, e-mai

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

2001-11-15 Thread PHPGalaxy.com
age- > > From: matt stewart [mailto:[EMAIL PROTECTED]] > > Sent: 15. november 2001 21:32 > > To: 'Lars B. Jensen'; [EMAIL PROTECTED] > > Subject: RE: [PHP-DB] Why use MySQL with PHP > > > > > > sounds wonderful - do you know when (roughly) it&

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

2001-11-15 Thread Lars B. Jensen
15. november 2001 21:32 > To: 'Lars B. 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

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

2001-11-15 Thread matt stewart
27;t mySQL 4 therefore 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 exit

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

2001-11-15 Thread Lars B. Jensen
" which totally 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

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

2001-11-15 Thread PHPGalaxy.com
t it has its great parts... :) > > Enough storytelling, goodluck on your assignment > > / Lars > > PS. Søren, skriv hvis der er noget... Jeg har arbejdet de sidste par år med > PHP / mySQL for firmaer som TDC KabelTV og lign. > > > -Original Message----- > >

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

2001-11-15 Thread Lars B. Jensen
søren eriksen > Cc: [EMAIL PROTECTED] > Subject: 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 p

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

2001-11-15 Thread matt stewart
better) but for most websites, 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

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 Richard Hillström (GIS)
ay, November 15, 2001 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-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 (http:/

[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 opportu

[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 PROTECT

[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 PROTECTED]

[PHP-DB] Why do we want to give YOU money?

2001-02-09 Thread allyours
Simple answer, you were randomly selected from our recently purchased opt-in lists. OK so why are we giving away money you ask? Another simple answer. We want you to discover what 10,000's of other people just like you already know... our Casino is fast-paced, interactive and just plain old fun.