Re: [PHP] variable substitution

2008-01-01 Thread jekillen
On Jan 1, 2008, at 3:48 PM, James Ausmus wrote: On Jan 1, 2008 2:17 PM, jekillen <[EMAIL PROTECTED]> wrote: Hello again; I have two variables declared in the global scope of a script. $string_a = 'stuff $string_b and more stuff'; $string_b = ''; One is a string with a reference for substitutio

Re: [PHP] variable substitution

2008-01-01 Thread jekillen
On Jan 1, 2008, at 3:31 PM, Richard Lynch wrote: On Tue, January 1, 2008 4:17 pm, jekillen wrote: Hello again; I have two variables declared in the global scope of a script. $string_a = 'stuff $string_b and more stuff'; $string_b = ''; One is a string with a reference for substitution to the o

Re: [PHP] variable substitution

2008-01-01 Thread James Ausmus
On Jan 1, 2008 2:17 PM, jekillen <[EMAIL PROTECTED]> wrote: > Hello again; > I have two variables declared in the global scope of a script. > $string_a = 'stuff $string_b and more stuff'; > $string_b = ''; > One is a string with a reference for substitution to the other > string which is empty. > I

Re: [PHP] variable substitution

2008-01-01 Thread Richard Lynch
On Tue, January 1, 2008 4:17 pm, jekillen wrote: > Hello again; > I have two variables declared in the global scope of a script. > $string_a = 'stuff $string_b and more stuff'; > $string_b = ''; > One is a string with a reference for substitution to the other > string which is empty. > In the proce

Re: [PHP] variable substitution

2008-01-01 Thread Casey
On Jan 1, 2008 2:17 PM, jekillen <[EMAIL PROTECTED]> wrote: > Hello again; > I have two variables declared in the global scope of a script. > $string_a = 'stuff $string_b and more stuff'; > $string_b = ''; > One is a string with a reference for substitution to the other > string which is empty. > I

[PHP] variable substitution

2008-01-01 Thread jekillen
Hello again; I have two variables declared in the global scope of a script. $string_a = 'stuff $string_b and more stuff'; $string_b = ''; One is a string with a reference for substitution to the other string which is empty. In the processing body of the script are if/if else blocks. In these block

Re: [PHP] Variable substitution

2002-04-21 Thread Jason Wong
On Saturday 20 April 2002 17:08, Greg Hulands wrote: > Hi, > I am trying to make an e-mail form so that I can generate an e-mail to send > to all the users of the system. In the message part I want to be able to do > something like this. > > Dear $fName, > Welcome to . > > When it then sends t

[PHP] Variable substitution

2002-04-21 Thread Greg Hulands
Hi, I am trying to make an e-mail form so that I can generate an e-mail to send to all the users of the system. In the message part I want to be able to do something like this. Dear $fName, Welcome to . When it then sends the e-mail, it should substitute $fName with the current row in the da