SC Source
12-23-2003, 06:06 AM
Ok, I got a problem. I no absolutely nothing about php scripting. I am installing a wishlist on my web site. And am getting errors.
Check it out: www.splintercellsource.com/index.php?page=wishlist/gbook
Try and post a wish. You will get an error. I have no idea what that means. I will give you the file contents:
<?php
$space = "<br>";
$space2 = "\n";
$filename = 'guests.dat';
$date = date("F j, Y, g:i a");
$name = $_POST["name"];
$email = $_POST["email"];
$comments = $_POST["comments"];
$file = file_get_contents($filename);
$fp = fopen($filename, "w");
fwrite($fp, "<b>Date:</b>");
fwrite($fp, $date);
fwrite($fp, $space);
fwrite($fp, "<b>Name:</b>");
fwrite($fp, $name);
fwrite($fp, $space);
fwrite($fp, "<b>Email:</b>");
fwrite($fp, "<a href=mailto:$email>$email</a>");
fwrite($fp, $space);
fwrite($fp, "<b>Comments:</b><Br>");
fwrite($fp, $comments);
fwrite($fp, $space);
fwrite($fp, $space);
fwrite($fp, $file);
fclose($fp);
include ("header.php");
echo "<a href=vbook.php>View the guestbook</a>";
include ("footer.php");
?>
Thats what it says. If someone could please IM me with some help, that would be great.
My screen name for AIM is devsterdude.
Any help or suggestions will be grateful.
Thanx
Check it out: www.splintercellsource.com/index.php?page=wishlist/gbook
Try and post a wish. You will get an error. I have no idea what that means. I will give you the file contents:
<?php
$space = "<br>";
$space2 = "\n";
$filename = 'guests.dat';
$date = date("F j, Y, g:i a");
$name = $_POST["name"];
$email = $_POST["email"];
$comments = $_POST["comments"];
$file = file_get_contents($filename);
$fp = fopen($filename, "w");
fwrite($fp, "<b>Date:</b>");
fwrite($fp, $date);
fwrite($fp, $space);
fwrite($fp, "<b>Name:</b>");
fwrite($fp, $name);
fwrite($fp, $space);
fwrite($fp, "<b>Email:</b>");
fwrite($fp, "<a href=mailto:$email>$email</a>");
fwrite($fp, $space);
fwrite($fp, "<b>Comments:</b><Br>");
fwrite($fp, $comments);
fwrite($fp, $space);
fwrite($fp, $space);
fwrite($fp, $file);
fclose($fp);
include ("header.php");
echo "<a href=vbook.php>View the guestbook</a>";
include ("footer.php");
?>
Thats what it says. If someone could please IM me with some help, that would be great.
My screen name for AIM is devsterdude.
Any help or suggestions will be grateful.
Thanx