> Hi Guys
>
> Really simple question. How do I change the following:
>
> print("value='" . $attributes["messageSubject"] . "'");
>
> to have double quotes around the subject field instead. i.e.:
>
> print("value="" . $attributes["messageSubject"] . """);
>
Simple:
Print ("value=\""{$attributes['messageSubject']}\"");
HTH,
Mikey
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

