Re: [PHP] PHP and SQL Server

2008-10-13 Thread Andrew Ballard
On Tue, Sep 23, 2008 at 10:17 AM, Jason <[EMAIL PROTECTED]> wrote: > At 15:05 23/09/2008, you wrote: > > [snip] > >> So, I'm left wondering what that leaves. Is there anything currently >> available that could be considered stable for a production >> environment, supports parameterized queries and

Re: [PHP] PHP and SQL Server

2008-09-23 Thread Jason
At 16:24 23/09/2008, you wrote: > We have done limited testing here, but it may be that only the PHP server > requires the 2005 (ODBC driver) components. Could be worth investigating. Hey - if it gets me back to developing apps and away from working with database libraries and abstractions, I'm

Re: [PHP] PHP and SQL Server

2008-09-23 Thread Andrew Ballard
On Tue, Sep 23, 2008 at 11:06 AM, Jason <[EMAIL PROTECTED]> wrote: > At 15:49 23/09/2008, you wrote: >> >> On Tue, Sep 23, 2008 at 10:17 AM, Jason <[EMAIL PROTECTED]> wrote: >> > At 15:05 23/09/2008, you wrote: >> > >> > [snip] >> > >> >> So, I'm left wondering what that leaves. Is there anything c

Re: [PHP] PHP and SQL Server

2008-09-23 Thread Andrew Ballard
On Tue, Sep 23, 2008 at 11:02 AM, Ashley Sheridan <[EMAIL PROTECTED]> wrote: > If you're running an old version of MS SQL Server then I really would > suggest moving to MySQL if you're able. I had huge problems at work with > an older version of the MSSQL software, as it was missing really basic >

Re: [PHP] PHP and SQL Server

2008-09-23 Thread Jason
At 15:49 23/09/2008, you wrote: On Tue, Sep 23, 2008 at 10:17 AM, Jason <[EMAIL PROTECTED]> wrote: > At 15:05 23/09/2008, you wrote: > > [snip] > >> So, I'm left wondering what that leaves. Is there anything currently >> available that could be considered stable for a production >> environment, s

Re: [PHP] PHP and SQL Server

2008-09-23 Thread Ashley Sheridan
On Tue, 2008-09-23 at 10:49 -0400, Andrew Ballard wrote: > On Tue, Sep 23, 2008 at 10:17 AM, Jason <[EMAIL PROTECTED]> wrote: > > At 15:05 23/09/2008, you wrote: > > > > [snip] > > > >> So, I'm left wondering what that leaves. Is there anything currently > >> available that could be considered stab

Re: [PHP] PHP and SQL Server

2008-09-23 Thread Andrew Ballard
On Tue, Sep 23, 2008 at 10:17 AM, Jason <[EMAIL PROTECTED]> wrote: > At 15:05 23/09/2008, you wrote: > > [snip] > >> So, I'm left wondering what that leaves. Is there anything currently >> available that could be considered stable for a production >> environment, supports parameterized queries and

Re: [PHP] PHP and SQL Server

2008-09-23 Thread Jason
At 15:05 23/09/2008, you wrote: [snip] So, I'm left wondering what that leaves. Is there anything currently available that could be considered stable for a production environment, supports parameterized queries and is not slated to be mothballed in the near future? Have you considered the MS

Re: [PHP] php and sql problem with mysql_query and insert

2003-01-29 Thread Maxim Maletsky
Guess what? add this on top of the file: error_reporting(E_ALL); this will probably tell you these variables are unset :) Why? Register global... wrong logic... etc... What php 4 is exactly installed there? -- Maxim Maletsky [EMAIL PROTECTED] "Sunfire" <[EMAIL PROTECTED]> wrote... : > hi

RE: [PHP] php and sql problem with mysql_query and insert

2003-01-29 Thread Bryan Brannigan
Have you tried echo'ing out the variable before and after the mysql_query? > -Original Message- > From: 1LT John W. Holmes [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 29, 2003 6:20 AM > To: Sunfire; [EMAIL PROTECTED] > Subject: Re: [PHP] php and sql problem

Re: [PHP] php and sql problem with mysql_query and insert

2003-01-29 Thread 1LT John W. Holmes
> im having a little problem with mysql_query("insert into members > ('$company', '$name1', '$name2', '$address1', '$address2', ''$ac1', '$ext2', > '$num1', '$ac2', '$ext2', '$num2', '$city', '$state', '$zip', '$desc', > '$flags')"); > > for some reason those variables are empty by the time they ge

Re: [PHP] php and sql problem with mysql_query and insert

2003-01-29 Thread Ernest E Vogelsinger
At 05:17 29.01.2003, Sunfire said: [snip] >hi ... > >im having a little problem with mysql_query("insert into members >('$company', '$name1', '$name2', '$address1', '$address2', ''$ac1', '$ext2', >'$num1', '$ac2', '$ext2', '$num2', '$city', '$state', '$zip',

RE: [PHP] PHP and SQL

2003-01-17 Thread John W. Holmes
> My company had just ordered a SQL 2000 Server. I need to make a webpage > that collects data from the Server's database. I guess I need to use PHP > with SQL. My question is what is the difference between SQL and mySQL? I > brought a book that teaches you how to use PHP with MymySQL, I am jus

Re: [PHP] PHP and SQL

2003-01-17 Thread Adam Voigt
SQL Server 2000 has a book's online sort of thing, it's a help manual that is installed while your installing the SQL Server client (Enterprise Manager) or server, it's been invaluable in figuring out functions specific to MSSQL. I highly recommend just using that. On Fri, 2003-01-17 at 0

Re: [PHP] Php and SQL Server 2000 - Help Needed

2002-04-22 Thread heinisch
At 22.04.2002 14:04, you wrote: > >Hi all of you >I 'm desesperatly trying to connect to my MS SQL server 2000 demo version >using a php script (executed by a form), running Easyphp (apache) as Web >server, under Win 2000 Pro F Sp1. > >It says >Warning: MS SQL message: Échec de la connexion de

RE: [PHP] PHP and SQL help

2002-03-05 Thread Lu, Yuan
;." $last,"; } else { $text="$text"."$firstname"." $middlename"." $lastname,"; } $text="$text"." $affil"; if ( $abs ) { $text="$text"."$seminartitle"; } else { $text="$text"

Re: [PHP] PHP and SQL help

2002-03-04 Thread Bogdan Stancescu
Take a look at the source HTML in your browser - you may be getting some "<" for example which would do that. I really can't tell what it is for sure, but looking at the HTML source is generally a good idea... Bogdan Yuan Lu wrote: >I am new to PHP and MySQL, and appreciate your help greatly