i have some knowledge of JS so i whipped this up. if you look at it in html you'll see how i would like it. I dont now much php, but i would like make my page basically like that. except i want the names that get submited to become part of the static page. So how can i make my page look basically like that, using php?
<html>
<head>
<title>People to rob</title>
<script type="text/javascript">
function display() {
document.getElementById('container').innerHTML += document.form1.user.value + ' ID#'+document.form1.uid.value +'<a href="http://www.edrugtrader.com/rob.php?uid=' + document.form1.uid.value + '"> Rob</a>Posted by:' + document.form1.yourname.value
}
</script>
</head>
<body>
<form name="form1">
<p>
<b> Your EDT name</b>
<input type="text" length="20" name="yourname">
</p>
<b>User's Name who robbed you</b>
<input type="text" length="20" name="user">
</p>
<p>
<b>THeir Id number</b>
<input type="text" length="5" name="uid">
</p>
<p>
<input type="button" value="Display" onclick="display()" />
</p>
</form>
<h1>People to rob.</h1>
<div id="container"></div>
</body>
</html>