I want to give an example of how to use tags. but when i do, the tags actually turn into a link.
This is what i have written:
} elseif ($en_options["qstring"] == "addnews") {
$en_options["html"] .= "
<form action='easynews.php?doaddnews' method='post'>
<input type='hidden' name='n_name' value='$en_login_user'>
Use this for links: <a href=\"LINK GOES HERE\" target=\"_blank\">Click here to read entire story.</a>
<br>Replace LINK GOES HERE with the url to the page you want to open when the link is clicked.
<p>
Name: <b>$en_login_user</b>
<br>Topic: <input type='text' name='n_topic'>
<p>
News:
<br>
<textarea cols='75' rows='15' name='n_news'></textarea>
<br><input type='submit' name='n_submit' value='Add News'>
</form>
";
but the <a href=\"LINK GOES HERE\" target=\"_blank\">Click here to read entire story.</a> actually comes out as a link.
DUH!
thanks!
K