cragllo
10-05-2004, 10:14 PM
Im starting an internet radio and would like to setup a request system like here www.habbohut.com . My site is http://cragllo.trap17.com/radio/ .
I have a code which i am using for a contact form:
<?
$name = $_REQUEST['name'] ;
$email = $_REQUEST['email'] ;
$subject = $_REQUEST['subject'] ;
$message = $_REQUEST['message'] ;
mail( "name@domain.com", "Feedback Form Site",
$message, "From: $email" );
header( "Location: http://www.domain.com/thankyou.php" );
?>
I would like to change this so that it writes to a text file,
Wich cnn then be read and displayed as a html document with a delete button to delete messages.
Please contact me @ http://cragllo.trap17.com/radio/contact.php
Thank you,
craig.
I have a code which i am using for a contact form:
<?
$name = $_REQUEST['name'] ;
$email = $_REQUEST['email'] ;
$subject = $_REQUEST['subject'] ;
$message = $_REQUEST['message'] ;
mail( "name@domain.com", "Feedback Form Site",
$message, "From: $email" );
header( "Location: http://www.domain.com/thankyou.php" );
?>
I would like to change this so that it writes to a text file,
Wich cnn then be read and displayed as a html document with a delete button to delete messages.
Please contact me @ http://cragllo.trap17.com/radio/contact.php
Thank you,
craig.