[snip]
> I need to display : "$_POST[$var],"
>
> Including the "" and the , .
>
> I have tried : \"\"$_POST[\".$var.\"]," but that is very wrong.
>
> Could one of you kind list members show me what it should be please ?


You have a couple of options... just pick the one that suits you...

<?
echo "\"{$_POST[$var]},\"";
echo '"'.$_POST[$var].',"';
?>
[/snip]

var should not have a $ in front of it, should it? 

echo "\"{$_POST['var']},\"";
echo '"'.$_POST['var'].',"';

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to