this is really buggin me... i've got this free-for-all that i want to make, and 
everything seems logical, but....

echo "<form method=\"POST\" action=\"$PHP_SELF\" name=\"linkadd\">";
echo "<input type=\"text\" name=\"url\" size=\"20\" value=\"http://\"><br>";
echo "<input type=\"text\" name=\"text\" size=\"20\"><br>";
echo "<input type=\"submit\" name=\"submit\" value=\"Generate New Link\">";
echo "</form>";



if (isset($url) && isset($text)) {
    $fp = fopen("./file.txt", "w");
    fwrite("$fp", "<a href=\"$url\">$text</a><br>", "w");
    fclose($fp);
}

... that isn't writing anything to the file. any help would be appreciated. thx in 
advance

Reply via email to