I am trying to keep a default text in a text box. But if I try to use couple of words having spase in between it just only taking the first word. I want to show the couple of words in the text box. How can I do that?
Here is my code...... I am passing the sentence through $Name
$Name = "Hello World";
But it's unly showing "Hello" in the text box.
<input type="text" name="Domain_Name[]" value = <?php print "$Name";?> size = "30">
Here is my code...... I am passing the sentence through $Name
$Name = "Hello World";
But it's unly showing "Hello" in the text box.
<input type="text" name="Domain_Name[]" value = <?php print "$Name";?> size = "30">
Comment