RE: [PHP] Netscape 4.7 with php gd, very slow

2002-07-26 Thread Harry Yu
Both are running Apache. I'm using the Windows machine as a development box. The web server and php configuration are very close. --- Bob Lockie <[EMAIL PROTECTED]> wrote: > > >I have no problem with Netscape 4.7 when connecting > to > >Windows 2000 running the same script. Also, I > don't >

RE: [PHP] Netscape 4.7 with php gd, very slow

2002-07-26 Thread Harry Yu
I have no problem with Netscape 4.7 when connecting to Windows 2000 running the same script. Also, I don't have any nested tables in the html. Any other ideas? Thanks, Harry --- Bob Lockie <[EMAIL PROTECTED]> wrote: > > >[snip] > >I'm trying to generate dynamic buttons with text > from mysql

Re: [PHP] Need some help too!

2002-04-02 Thread Harry Yu
In you php.ini, change the SMTP to the Solaris mail server. Hope this help, Harry --- "Ryan F. Bayhonan" <[EMAIL PROTECTED]> wrote: > Good day to all. > > Just want to ask some help from you guys. > > I'h vaving problem with mail function. I'm currently > making a PHP > application that would

Re: [PHP] Please help with code

2002-04-01 Thread Harry Yu
You forgot to select the database that you want to insert. Ex: $db = mysql_select_db ( mydatabase ); Hope this helps, Harry --- "Denis L. Menezes" <[EMAIL PROTECTED]> wrote: > Hello friends, > > can someone tell me what is wrong with this code : > > > > > > > > > >

Re: [PHP] A Small Bug Giving Me A Big Headache

2002-03-04 Thread Harry Yu
Does any of your values has an apostrophe in them? If there is, you will get a syntax error. Hope this helps, Harry __ Do You Yahoo!? Yahoo! Sports - sign up for Fantasy Baseball http://sports.yahoo.com -- PHP General Mailing List (http://www.ph

[PHP] Specify php.ini per virtual host?

2002-02-21 Thread Harry Yu
You can use the php_admin_value in your virtual host. For example: php_admin_value safe_mode 0 This will turn safe mode off for that virtual host. Hope this helps, Harry __ Do You Yahoo!? Yahoo! Sports - Coverage of the 2002 Olympic Games http:

RE: [PHP] array session variable problem (register_global=off)

2002-02-20 Thread Harry Yu
Thanks Kirk, That works. Harry __ Do You Yahoo!? Yahoo! Sports - Coverage of the 2002 Olympic Games http://sports.yahoo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] array session variable problem (register_global=off)

2002-02-20 Thread Harry Yu
, Harry The code in the first file is correct if register_globals is on. Since it is off, remove the call to session_register() and just assign values directly to $_SESSION, e.g., $_SESSION[name['first']] = 'First Name'; Kirk > -Original Message- > From: Harry Yu [

[PHP] array session variable problem (register_global=off)

2002-02-20 Thread Harry Yu
Hi All, I have register_global = off and I have problem retrieving array session variable. For example; Page1.php Page2.php None of these works. The session file does registered the array and variables. I can retrieve the array with the register_global on. Any ideas? Thanks, Harry ___

[PHP] Authentication with sessions - Recommendation and suggestions?

2002-02-13 Thread Harry Yu
Hi All, I'm trying to setup an authentication process and sessions to protect some of my pages for valid users only. The following are what I had in mind: login.php-- Protected Page" } else { header ( "location: http://server/login_page.php\n\n"; ); } ?> protected_page.php http://server/lo