I have a tag board script that works fine but im wanting to add bold letters and a link to it. here is the code that writes the file:
<body>
<?php
$fp = fopen("tag.txt", "a");
fputs ($fp, "$message BY: $name");
fclose ($fp);
?>
<?php
echo "Thank you for posting";
?>
</body>
for example if you typed in the $message box: hello and your name was bob it would say:
hello BY: bob
um and i want them to be able to type there name, there e-mail or site link then the message and i want to output it like below:
<b><a href="$link">$name</a>: </b>$message
please help me?