Re: [PHP-WIN] & character in e-mail msg

2001-12-13 Thread Michael Sims
At 12:19 PM 12/13/2001 -0400, Mick wrote: >I'm trying to dynamically place a 'querystring' link in the body of an >e-mail message but it won't read past the & character in the string. >Tried >'urlencode(), addbackslash(), qoutemeta(), hex values, etc. etc. but >nothing >seems to work. >I know it c

Re: [PHP-WIN] Magic Quotes

2001-12-13 Thread Michael Sims
At 10:57 AM 12/13/2001 -0500, Asendorf, John wrote: >OK, maybe I'm just off my rocker or have something set incorrectly or >something, but... > >What's the deal with magic quotes? > >you turn it on, and it automatically performs the addslashes for data being >entered into databases, right? But it

Re: [PHP-WIN] Magic Quotes

2001-12-13 Thread Michael Sims
At 10:57 AM 12/13/2001 -0500, Asendorf, John wrote: >OK, maybe I'm just off my rocker or have something set incorrectly or >something, but... > >What's the deal with magic quotes? Oh yeah, here is a nice post on PHPBuilder that explains this all very well: http://www.phpbuilder.com/forum/archive

Re: [PHP-WIN] IIS Lockdown Tool

2001-12-13 Thread Michael Sims
At 07:51 PM 12/13/2001 -0600, Todd Williamsen wrote: >here is a another great IIS lockdown tool > >http://www.apache.org LOL! Good one. :) -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

Re: [PHP-WIN] What to do, what to do!

2001-12-13 Thread Michael Sims
At 08:02 PM 12/13/2001 -0600, Todd Williamsen wrote: [...] >The problem is that abusers of the site will report games that they have not >played and screws up the stats of the players that he supposedly played >against. > >Now, the ultimate solution would be to have a way where when the winner >re

Re: [PHP-WIN] What to do, what to do!

2001-12-13 Thread Michael Sims
At 08:31 PM 12/13/2001 -0600, Todd Williamsen wrote: >I thought about that, but the problem is, what happens when the time expires >and the loser doesn't report? and At 08:55 PM 12/13/2001 -0600, Todd Williamsen wrote: >Since there is a ranking system, and if the game doesn't get reported by the

Re: [PHP-WIN] ISAPI Status

2001-12-14 Thread Michael Sims
At 12:27 PM 12/14/2001 -0800, Flint Doungchak wrote: >I was just wanting to see what people are experiencing with the ISAPI module >for IIS 5.0 with PHP 4.1.0. Sorry I don't have an answer to your question, but just a related question of my own. I've seen lots of people refer to 4.1.0 as "final

Re: [PHP-WIN] ISAPI Status

2001-12-14 Thread Michael Sims
At 03:58 AM 12/15/2001 +0100, Tommy Finsen wrote: >I think I'll wait for a few iterations before I give it another try. >Luckily I have the HW to run PHP in CGI :). IIS5 with PHP in CGI-mode is >rock stable. Been running it for 10 months with NO downtime (except when >upgrading). Thanks for the i

RE: [PHP-WIN] ISAPI Status

2001-12-15 Thread Michael Sims
At 06:07 PM 12/15/2001 +, Jeff Waldock wrote: >For what it's worth, I have been running PHP ISAPI (versions 4.0.6 and >earlier) on Win2k and WinNT4 (SP6) for quite a while - 12 months and approx >2 years, respectively, and have had not a single problem - totally >fault-free. I have to say tha

Re: [PHP-WIN] Loading modules

2001-12-15 Thread Michael Sims
At 06:12 PM 12/15/2001 +0530, Bharath Bhushan Lohray wrote: >Altough I have included (uncommented) certain modules from the php.ini, and >restarted apache, I am not able to use the features of those modules. > >I receive an error that the function is not defined. > >Initially I saw dialog boxes wi

Re: [PHP-WIN] Session question

2001-12-18 Thread Michael Sims
At 05:02 PM 12/18/2001 -0500, [EMAIL PROTECTED] wrote: >I was wondering how I can stop the following message from posting when a >user hits the back button when I am using sessions? Look for this section in your php.ini: ; Set to {nocache,private,public} to determine HTTP caching aspects. sessio

Re: [PHP-WIN] Session Questions

2001-12-20 Thread Michael Sims
At 08:38 AM 12/20/2001 -0500, [EMAIL PROTECTED] wrote: >I am using Sessions on a website. When a user hits the back button they get >an error message "Page has Expired". Is there a way preventing this. I can >currently using 4.0.6 if that helps at all. You asked this exact same question two da

Re: [PHP-WIN] email() problem

2001-12-20 Thread Michael Sims
At 09:34 PM 12/20/2001 -0500, Thomas Orr wrote: >I need help with a basic issue. I can't seem to get the mail() function to >work with php4 on an xp machine running iis5. I'm new to php and really [...] >mail($recipient, $subject, $msg, $mailheaders); <--*THIS IS WHERE >IT SCREWS UP* W

RE: [PHP-WIN] PHP software tool

2001-12-22 Thread Michael Sims
At 09:17 PM 12/22/2001 +, Martin Halford wrote: >Dear 'LaserJetter' > >I quite like HTML-Kit from: > >http://www.chami.com/html-kit/ > >It's free, stable, has line numbering, php plug-in and above all else >remembers file locations and has a good recent files look-up. I second the recommendat

RE: [PHP-WIN] PHP 4.1.0 Win32 problem

2001-12-22 Thread Michael Sims
At 10:44 PM 12/22/2001 -0500, Andrew Saturn wrote: >PHP Warning: Unable to load dynamic library './php_gd.dll' - One of the >library > files needed to run this application cannot be found. [...] >I used the default gd library, and it's uncommented in php.ini: > >extension=php_gd.dll Did you f

Re: [PHP-WIN] Radio buttons

2001-12-22 Thread Michael Sims
At 07:34 PM 12/22/2001 -0800, Mihail Bota wrote: >Andrew, I even checked a big HTML bible (one of the newest), nothing new, >or I did not know. I looked over HTML tutorial sites, the same story, >identical syntax, goodies for colors, shapes etc. but nothing related to >this problem. >I'll try the

Re: [PHP-WIN] Passing by reference...

2001-12-31 Thread Michael Sims
At 07:37 PM 12/31/2001 -0600, Anthony Ritter wrote: >.. >function tax (&$Salary) > { > $Salary= $Salary - (($Salary/100)*20); > return $Salary; > } >$Salary=2500; >echo $Salary; >?> >.. > >The result in the textbook is 2000

Re: [PHP-WIN] Passing by reference...

2001-12-31 Thread Michael Sims
At 08:51 PM 12/31/2001 -0600, Anthony Ritter wrote: >... >function tax (&$Salary) > { > $Salary= $Salary - (($Salary/100)*20); > return $Salary; > } >$Salary=2500; >echo (tax($Salary)); // This displays $2000 >echo $Salary; // This also di

Re: Fw: [PHP-WIN] Passing by reference...

2002-01-01 Thread Michael Sims
At 09:27 AM 1/2/2002 +1100, Ignatius Teo wrote: >Isn't passing by reference a "no-no" is terms of good programming? At least >that's what I was told when I studied programming about 12 years ago? > >Ignatius Not sure...do you recall the reasons that were given when you were told that? -- PHP W

Re: Fw: [PHP-WIN] Passing by reference...

2002-01-01 Thread Michael Sims
At 12:08 AM 1/2/2002 -0600, Michael Sims wrote: >At 09:27 AM 1/2/2002 +1100, Ignatius Teo wrote: >>Isn't passing by reference a "no-no" is terms of good programming? At least >>that's what I was told when I studied programming about 12 years ago? >> &

Re: [PHP-WIN] Array within a Class?

2002-01-05 Thread Michael Sims
At 03:04 PM 1/5/2002 -0800, Chris Hall wrote: >Just a quicky -- > >I have yet to see anyone define an array within a class, yet if it is >possible, would i be able to access that array with >$this->array["variable"];? I've designed a class that has a method that RETURNS an array, but it sounds l

Re: [PHP-WIN] REAL NEWBIE QUESTION!!!

2002-01-07 Thread Michael Sims
At 06:20 PM 1/3/2002 -0500, Jack Cazes wrote: >I have php 4.11 loaded and it works fine...I now want to create a >database...so I use Winsqladm and create the database...however there is no >mention of username and passworddo I have to then define and FSN in >Windows ODBC administrator (even t