On Mon, Dec 24, 2001 at 01:48:38PM -0800, Phillip B. Bruce wrote:

>     I want to take something like the following:
> 
>     $row = 1;
>     $ column = 1;
> 
>     if ( $pages = "r$row$column")
> 
>        What I want to see is r1c1 as a string so I'm actually
> concatenating the strings together.

if ($pages == "r$row" . "c$column")

-- 
PHP General 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]

Reply via email to