Jump to content

Default value for input box shows partially


deotpit

Recommended Posts

Hi everyone,
The following code is aimed to show "aaa aaa" as default value for input box in a form:
<?php //xxx.php
    $db = mysqli_connect('localhost', '', '', '');
?>
<!DOCTYPE html>
<html>
<body>
    <form method="POST" action="xxx.php">
        <input type="text" name="id" class="id_input" value=<?php echo 'aaa aaa';?>>
    </form>        
</body>
</html>

Link to comment
Share on other sites

Your resulting HTML will look like

<input type="text" name="id" class="id_input" value=aaa aaa'>

but the aaa aaa needs to be in quotes (else it is interpreted only as aaa). Put quotes around the <?php...?>, thus

<input type="text" name="id" class="id_input" value="<?php echo 'aaa aaa';?>">

 

Link to comment
Share on other sites

On 6/5/2018 at 3:06 PM, Barand said:

Your resulting HTML will look like


<input type="text" name="id" class="id_input" value=aaa aaa'>

but the aaa aaa needs to be in quotes (else it is interpreted only as aaa). Put quotes around the <?php...?>, thus


<input type="text" name="id" class="id_input" value="<?php echo 'aaa aaa';?>">

 

Thanks

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.