Jump to content

[SOLVED] textarea problem


Recommended Posts

echo "<div class='editor' style='text-align: center'>";
						echo "<p class='editortitle' style='font-size: 175%; padding: 4px 0px 4px 0px; margin: 0px;'>Welcome Letter</p>
			                	<textarea cols='80' rows='25' name='welcome'>" . $row['welcome'] . "</textarea>";
					echo "</div>";

 

The following code above should work right? In the database there is html tags, could this cause the content to not load?

Link to comment
Share on other sites

what are the HTML tags in the database?

 

also try this

?>

<div class="editor" style="text-align: center">
<p class="editortitle" style="font-size: 175%; padding: 4px 0px 4px 0px; margin: 0px;">Welcome Letter</p>
<textarea cols="80" rows="25" name="welcome"><?php echo"" . $row['welcome'] . ""; ?></textarea>
</div>
<?php

Link to comment
Share on other sites

$allowedTags='<p><strong><em><u><h1><h2><h3><h4><h5><h6><img>';
				$allowedTags.='<li><ol><ul><br><ins><del>';

			$sContent = strip_tags(stripslashes($row['welcome']),$allowedTags);
       
echo "<div class='editor' style='text-align: center'>";
						echo "<p class='editortitle' style='font-size: 175%; padding: 4px 0px 4px 0px; margin: 0px;'>Welcome Letter</p>
			                	<textarea cols='80' rows='25' name='welcome'>" . $sContent . "</textarea>";
					echo "</div>";

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.