[PHP-DB] re: PHP and MySQL

2003-06-14 Thread Jon Miller
I'm looking to install PHP v4 on a RHL7.3 server. What I'm concerned about is that everywhere I look there is no mention of either of these application at the current version (v4) available on RHL7.3, only on RHL8.0 So the question is is this release stable on RHL7.3? When I tried to install PH

Re: [PHP-DB] re: PHP and MySQL

2003-06-14 Thread Jason Wong
On Saturday 14 June 2003 17:51, Jon Miller wrote: > I'm looking to install PHP v4 on a RHL7.3 server. What I'm concerned about > is that everywhere I look there is no mention of either of these > application at the current version (v4) available on RHL7.3, only on RHL8.0 *Where* did you look? The

[PHP-DB] HELP, MSSQL STORED PROCEDURES

2003-06-14 Thread nabil
PLEASE HELP ME PHP PEOPLE, I have a stored procedure on a remote Microsoft (stupid) SQL server.. and I have to connect to it remotely and I have only permission to execute those specific procedure , and I only got the returned value... My server that I will connect from is Linux, apache with MySQ

[PHP-DB] MSSQL Procedures

2003-06-14 Thread Nabil Attar
Jeson Hi , this is Nabil from PHP list, i wonder if u could help with the following: I have a stored procedure on a remote Microsoft (stupid) SQL server.. and I have to connect to it remotely and I have only permission to execute those specific procedure , and I only got the returned value... My

Re: [PHP-DB] HELP, MSSQL STORED PROCEDURES

2003-06-14 Thread Martin
You are entirely wrong about ODBC. Linux has several implementations available. On Sat, 14 Jun 2003 14:30:42 +0300 "nabil" <[EMAIL PROTECTED]> wrote: > PLEASE HELP ME PHP PEOPLE, > > I have a stored procedure on a remote Microsoft (stupid) SQL server.. > and I have to connect to it remotely and

Re: [PHP-DB] HELP, MSSQL STORED PROCEDURES

2003-06-14 Thread nabil
could you help for that .?? "Martin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > You are entirely wrong about ODBC. Linux has several implementations available. > > > On Sat, 14 Jun 2003 14:30:42 +0300 > "nabil" <[EMAIL PROTECTED]> wrote: > > > PLEASE HELP ME PHP PEOPLE, > >

RE: [PHP-DB] PHP transfer variable question?????

2003-06-14 Thread Rich Hutchins
The default installation of PHP 4.2.x+ now ships with register_globals set to OFF in PHP.ini. You have two choices: 1. Change all of your variable references to $_POST['varname'] (or $_GET['varname']). In your case it looks like you'd need $_GET['id']. 2. Turn register_globals ON in your PHP.ini.

RE: [PHP-DB] PHP transfer variable question?????

2003-06-14 Thread Rich Hutchins
Sorry, bass-ackwards. 4.2.x+ ships with register_globals set to ON, not OFF. So you'd have to change the setting to register_globals=OFF for your existing code to work. Sorry for any confusion. Rich -Original Message- From: Rich Hutchins [mailto:[EMAIL PROTECTED] Sent: Saturday, June 14

Re: [PHP-DB] MSSQL Procedures

2003-06-14 Thread Frank M. Kromann
Hi, The easy way is to use the mssql functions in PHP. You can see how to configure PHP with these in the online manual: http://www.php.net/mssql. You need to download and install FreeTDS (http://freetds.org). You can also use the online manual to get samples on how to execute stored procedures a

[PHP-DB] Session Question

2003-06-14 Thread Boa Constructor
Greetings all, Now that my shopping cart is just about complete I've been working on the rest of the order process. I have got two pages before finally placing an order. The first page takes address details and the next page prints them all out with the contents of the shopping cart so the user

Re: [PHP-DB] PHP transfer variable question?????

2003-06-14 Thread Jason Wong
On Saturday 14 June 2003 22:55, Rich Hutchins wrote: > Sorry, bass-ackwards. 4.2.x+ ships with register_globals set to ON, not > OFF. So you'd have to change the setting to register_globals=OFF for your > existing code to work. You got it right the first time. The above is wrong. > Sorry for any

[PHP-DB] PHP 2 Text File

2003-06-14 Thread F-A-W®
Hi all, I use a script 'PHP 2 text file' , from http://www.ftls.org/php/which takes user input and inserted it into a txt file. it uses Basic authentication and login name and password are written in the .php file. have a look at it if you please. it is not working on my server, why?

[PHP-DB] php /mysql / viewing offline question

2003-06-14 Thread JeRRy
Hi, I have a linux webserver that I have that has php webpages I have created and mysql databases. I would like to do some work on them while being offline at times. I have the following programs which enable me to do this: - DzSoft PHP Editor (windows version) - mysql (windows version) - php-4

RE: [PHP-DB] php /mysql / viewing offline question

2003-06-14 Thread Mike
You'll want a webserver running and PHP configured for that server. You can easily use IIS or Apache for this purpose. Which one you want to use is something that many people will argue over, but the simple fact is that you're doing some offline development and you should use what's easiest for you