I need a string appended to a variable.
$name = "app200.php";
$string = <form name = "$name" method = "post">
echo "$string";
The result I need is
<form name = [B]"app200.php"[/B] method = "post">
But I am not able to echo the string this way. Any help.
Thanks