Neckter wrote:
whats wrong?
Everything...
here, you just totally overused double quotes...
<?php
$tinfo("<a href="$site">$name: </a>$message");
$file("tag.txt");
fopen("tag.txt");
fwrite("$file, $tinfo, "a"");
?>
... should be....
<?php
$tinfo("<a href=\"$site">$name: </a>$message");
$file("tag.txt");
fopen("tag.txt");
fwrite($file, $tinfo, "a");
?>
Here you were treating an include file like a web page...
<?php
include("my URL.com/tag/tag.txt");
?>
...should be...
<?php
include("/tag/tag.txt");
?>