How to output the following html string using php's echo or print?

how to output the following html string using echo or print of php?

<td width=275><input type="text" name="title" value="<?php echo $row["title"]; ?>"></td>  
echo "<td width=275><input type="text" name="title" value="<?php echo $row["title"]; ?>"></td>"

No

echo "<td width=275><input type="text" name="title" value="<?php echo $row["title"]; ?>"></td>"

nor

print <<<EOT
<td width=275><input type="text" name="title" value="<?php echo $row["title"]; ?>"></td>
EOT;

is not allowed either, because this html also contains a php statement.

my real need is

<?php
if(isset($_POST["flag"])
{ 
print <<<EOT
<td width=275><input type="text" name="title" value="<?php echo $row["title"]; ?>"></td>
EOT;
else 
{

} 
?>
Apr.09,2021


  </td>
<?php endif; ?>

1 does not fail to meet your needs

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b398ce-2c1b7.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b398ce-2c1b7.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?