hello there!
how can i make the email & url message as hyperlink (href) with this ff: code in post.php?
<?php
error_reporting(E_ALL & ~E_NOTICE);
$address = $SERVER['REMOTE_ADDR'];
$filename = $SERVER['DOCUMENT_ROOT']."/view.txt";
$maxMessages = 4;
$msgArray = array();
$nam = stripslashes($name);
$mail = stripslashes($email);
$site = stripslashes($url);
$topi = stripslashes($topic);
$messag = stripslashes($message);
$cnt = "<hr><br>Name: $nam<br>\n";
$cnt2 = "Email: $mail<br>\n";
$cnt3 = "URL: $site<br>\n";
$cnt4 = "Title: $topi<br>\n";
$cnt5 = "Message: $messag<br>\n";
$cnt6 = "IP: $address<br><br><br>\n\n";
$filed = @fopen($filename, "a+");
@fwrite($filed, "$cnt $cnt2 $cnt3 $cnt4 $cnt5 $cnt6");
fclose($filed);
$msg = "<p>Data Input complete</P>";
?>
<html>
<head>
<title>Evyeautte's Message Board</title>
</head>
<body>
<center>
<table width="80%">
<TBODY>
<tr>
<td bgcolor="#aeaeae"><font face="Arial, Helvetica, sans-serif" size="2"><strong><font color="#FFFFFF">BBS
Submission Form</font></strong></font></td>
</tr>
<tr><td bgcolor="#c0c0c0"><font size="2" face="Arial, Helvetica, sans-serif" color="#000000">
<BLOCKQUOTE>
<?php echo "You entered:";
echo "$cnt";
echo "$cnt2";
echo "$cnt3";
echo "$cnt4";
echo "$cnt5";
echo "$cnt6"; ?>
<p><a href="view2.php">View Entries Here!!!</a></p>
</BLOCKQUOTE></font></td>
</tr>
</table>
<br>
</center> </body>
</html>
pls. help me how to do this!
thank you very much!