I don't know why this doesn't work.
memberadd.php
<html>
<form method="GET">
Name:
<input type="text" name="name"><br>
Aim:
<input type="text" add value="Unavailable" name="aim"><br>
Email:
<input type="text" add value="Unavailable" name="email"><br>
Color:
<input type="text" name="color">
<input type="submit" value="Add">
</form>
<?php
if (isset($_GET['name']) && isset($_GET['aim']) &&
isset($_GET['email']) && isset($_GET['color']))){
fopen("members.txt", "w");
fwrite(
fwrite("<tr><td><font
color="$_GET['color']">$_GET['name']</td><td><font
color="$_GET['color']">$_GET['aim']</td><td><font
color="$_GET['color']">$_GET['email']</td></tr>");
?>
</html>
memberread.php
<?php
$data = fopen("members.txt", "r");
echo $data;
?>
members.php
<table border="1" width="100%">
<tr>
<td><font color="white">NAME </td>
<td><font color="white">AIM </td>
<td><font color="white">EMAIL </td>
</tr>
<?php
include("members.txt")
?>
</table>
basically, it's a script to add info to a .txt, if someone can make it so you can remove, it'll be helpful, my AIM is shortround4271