[PHP-WIN] syntax, 3 or 4?

2002-01-10 Thread Paul Wallace
Hello, Can anyone clarify if this code below is indeed PHP v4 or 3? It will save significant rigmarole. Where can I find online documentation for v3? I have this 'PHP 4 Bible' by IDG Books, but it's for the version the name suggests. Many thanks Paul. > What version of PHP do you have?

[PHP-WIN] Re: damnit! can't load PHP 4.1.0 as module on XP

2002-01-10 Thread Christian Calloway
nevermind.. im stupid "Christian Calloway" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hey everyone, > > Ok Im trying to load PHP 4.1.0 as a module on my XP(home) system. I included > the following lines in the apache httpd.conf file > > AddType application

php-windows Digest 10 Jan 2002 22:04:05 -0000 Issue 946

2002-01-10 Thread php-windows-digest-help
php-windows Digest 10 Jan 2002 22:04:05 - Issue 946 Topics (messages 11365 through 11384): PHP header 11365 by: Paul Wallace Socket timeout - not supported? 11366 by: Greg cant install PHP 11367 by: Lenny Mak 11368 by: sebbe.popmail.com 11370 by: se

[PHP-WIN] damnit! can't load PHP 4.1.0 as module on XP

2002-01-10 Thread Christian Calloway
Hey everyone, Ok Im trying to load PHP 4.1.0 as a module on my XP(home) system. I included the following lines in the apache httpd.conf file AddType application/x-httpd-php .php LoadModule php4_module c:/php4apache.dll but when I attempt to start Apache service, I get the following message: "T

RE: [PHP-WIN] Editor

2002-01-10 Thread Svensson, B.A.T. (HKG)
Tjohej, Once it recognize a keyword it colors it in a pre-configured color, or according to your custom settings. Ha't >-Original Message- >From: Samba Sidibeh [mailto:[EMAIL PROTECTED]] >Sent: Thursday, January 10, 2002 3:27 PM >To: Svensson, B.A.T. (HKG); [EMAIL PROTECTED] >Subject: R

Re: [PHP-WIN] Editor

2002-01-10 Thread Samba Sidibeh
Do you have to do any customization in VS C++ to make highlightening and all of that work properly? - Original Message - From: "Svensson, B.A.T. (HKG)" <[EMAIL PROTECTED]> To: "'SanjuroE'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, January 10, 2002 3:15 PM Subject: RE: [PH

RE: [PHP-WIN] Editor

2002-01-10 Thread Sandeep Murphy
try PHP COder Pro.. Light and Coool! -Original Message- From: brother [mailto:[EMAIL PROTECTED]] Sent: quinta-feira, 10 de Janeiro de 2002 14:17 To: '[EMAIL PROTECTED]' Subject: RE: [PHP-WIN] Editor > -Original Message- > From: SanjuroE [mailto:[EMAIL PROTECTED]] > > I am loo

RE: [PHP-WIN] Editor

2002-01-10 Thread brother
> -Original Message- > From: SanjuroE [mailto:[EMAIL PROTECTED]] > > I am looking for a light-weight editor which supports PHP tag > highlighting and indenting. > > Which editor do you recommend? My personal favourite is EditPlus. You find it at http://www.editplus.com where you can

RE: [PHP-WIN] Editor

2002-01-10 Thread Svensson, B.A.T. (HKG)
>Which editor do you recommend? MS VS C++ DevStudio 6.0 Enterprise edition - supports everything you ever (almost) needs. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administ

[PHP-WIN] Editor

2002-01-10 Thread FPU . WHITES1
--- Received from FPU.WHITES1 799 370310-01-02 14:10 -> [EMAIL PROTECTED] -> [EMAIL PROTECTED] I've tried Komodo and PHPCoder, but still find myself using TextPad most of the time. -Steve From: [E

RE: [PHP-WIN] Editor

2002-01-10 Thread Asendorf, John
I've started uing HTML-Kit and it's been great... I had been using the CoffeeCup HTML editor for the past 3 years and couldn't find anything I liked as much... until now... - John Asendorf - [EMAIL PROTECTED] Web Applications Developer http://www.lcounty.com - NEW FEATURES ADD

[PHP-WIN] Editor

2002-01-10 Thread SanjuroE
I am looking for a light-weight editor which supports PHP tag highlighting and indenting. Which editor do you recommend? Sanjuro -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Re: [PHP-WIN] sessions???

2002-01-10 Thread Pac mon
Possible that because session_name is a function it puking on the $session_name variable you're trying to create. Another note is this: $$session_name = "test"; Maybe I'm on crack but didn't you mean: &$session_name = "test"; Also... why did you try setting $session_name twice? Once to 'session

Re: [PHP-WIN] remote DB access

2002-01-10 Thread Pac mon
What version of PHP do you have? It sounds like the functions for mysql are loaded, but those functions have been built in since about 4.0 I believe. Include the information for both of the servers. > >Hello, > I have the code: > >#11 $db = mysql_connect("100.110.120.130", "root", "");

RE: [PHP-WIN] cant install PHP

2002-01-10 Thread Gregory Song
Well, IIS is recommended anyhow, 'coz it's capable and easy to config. You may install PWS if you are under WIN98 system, too, but that's just too simple to be used for studying sth. For the settings in the php.ini file, you can find a detailed description in PHP documentation, which can be do

[PHP-WIN] sessions???

2002-01-10 Thread Alex Elderson
Hi, This works fine: But way does this not work??? -- PHP Windows 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: [EMAIL PROTECTED]

RE: [PHP-WIN] remote DB access

2002-01-10 Thread Ertan Tike
if you behind the any firewall you must check 1039 port is open.. you can try this with "telnet 100.110.120.130 1039" command.. if telnet is connecting, port is open. -Original Message- From: Paul Wallace [mailto:[EMAIL PROTECTED]] Sent: Friday, January 04, 2002 12:19 PM To: [EMAIL PROTEC

Re: [PHP-WIN] cant install PHP

2002-01-10 Thread sebbe
Well, not necessarily IIS, you can install any server (I think). The php.ini is the PHP configuration file that sets all those interesting variables... Sebbe > woah > this means i have to install IIS 5.0 is it? > and play ard wif php.ini wat is that about? > > thanx > lenny > > >

[PHP-WIN] remote DB access

2002-01-10 Thread Paul Wallace
Hello, I have the code: #11 $db = mysql_connect("100.110.120.130", "root", ""); #12 mysql_select_db("DBname",$db); #13 $result = mysql_query("select * from gmember where gmember_id = '$login' and gmember_password = '$password'",$db); #14 $nrow=mysql_num_rows($result); #15

Re: [PHP-WIN] cant install PHP

2002-01-10 Thread sebbe
Hi, I think you've got to install a server to run PHP. I just installed IIS 5.0 and PHP 4.1.1 on Win 2000 and it works perfectly. Once I got around to play with the php.ini that is... ;) Cassiel > hi > > i m kinda bit new to PHP. > tried to install it in my comp (which is not a se

[PHP-WIN] cant install PHP

2002-01-10 Thread Lenny Mak
hi i m kinda bit new to PHP. tried to install it in my comp (which is not a server) to gain some workin knowledge b4 moving on (i m using win 2000) however i dun seem to be able to get anything done nothing appears on the screen tried lookin for help at PHP.com but to no avail pls help thanx