Re: [PHP] Apache 2 + PHP

2003-12-06 Thread Seung Hwan Kang
it doesn't matter! whatever u think, and what your job is. it's all up to IT manager(?) are they listen to us or do they know what's the newest verion in php or mysql. i wouldn't think so (it got to kidding!) as we are professional... we got to act like a real prof. but.. ? here u go! my dev. env

[PHP] Re: PHP and Intranets

2003-12-03 Thread Seung Hwan Kang
Colin Eldridge wrote: Hi, my name is Colin Eldridge, teacher from Australia. Hello Colin, Australia! I'm here in Wollongong Uni. I am relatively new to PHP. I have set up a small intranet for my students to build and use interactive webpages. The intranet: A server(P4, XP) running Apache, MY

[PHP] Re: i want help,thanks

2003-12-03 Thread Seung Hwan Kang
the use of session is not correct. :( if u use > php 4.1x .. as u do... u got to follow new standard. (see below) 乌有 无 wrote: > Hello: > I want your help! > The session sometime works well,sometime works badly! > It creates new empty file in /tmp.I also find this problem > with apache

[PHP] Re: combo box

2003-12-02 Thread Seung Hwan Kang
If I were you, I do this way. // in your HTML form. Husband ... // DB then insert 1, 2, 3, 4. //it will be one of them from flag variable. // when you retrieve it... if (flag == 1) echo "Husband" if ... and so on. :) Kang Chan Hweefarn Saputra wrote: hi :) i am creating a webpage.

[PHP] Re: Installing extensions (winXP)

2002-11-14 Thread Seung Hwan Kang
Some extensions are like not 100% available for Win32 environment. I use PHP 4.3.0pre2, Apache 2.0.43 and J2SDK 1.4.1 For XML, you need expat-1.95.5 and copy libexpat.dll to c:\windows\system32. For XSLT, you need sablot-0.96 and copy sablot.dll to c:\windows\system32. //php.ini extension_dir =

[PHP] Re: Installation error with 4.2.3

2002-11-06 Thread Seung Hwan Kang
Are you aware of register_globals = off? It might be the problem. You can set register_globals = on in php.ini or you better use $_POST, $_GET, $_SERVER ... eg. $fname -> $_POST["finame"] or $_GET["fname"] "Daniele Baroncelli" <[EMAIL PROTECTED]> wrote in message news:20021106100419.63359.q

[PHP] Re: php4.2.2 remembers last GET and POST vars in HTTP_SESSION_VARS also

2002-11-06 Thread Seung Hwan Kang
PHP 4.2.* has "register_globals = off" as a default. You variables has to be $_POST["fname"] or $_POST["fname"] or $_SERVER["PHP_SELF"] etc., or you can simple incides one file eg. //extract.php in your old codes... require_once "extract.php"; "Alexander Piavka" <[EMAIL PROTECTED]> wrote in

[PHP] Re: Database creating from XML file

2002-11-05 Thread Seung Hwan Kang
Another idea of doing this task is using XSLT. XML file can be tranformed to a text SQL file, then it can be called by PHP scripts. That can't be hard to do that if you know XSLT. "Bernardo De Barros Franco" <[EMAIL PROTECTED]> wrote in message news:20021105203656.93604.qmail@;pb1.pair.com... >