few questions

hey i would you be able to give me some guidence with a few php/webserver things?

what i am trying to do is send a email on page load, and then after the email has been sent have a message saying the request has been sent into a text field.

<?php 
$to = ""; 
$subject = "";
$message = ""; 
mail($to,$subject,$message); 
?>

<textarea name="" rows="1" cols="50">
have a nice day your request has been sent
</textarea>

also was wondering for database files where to i have to put them exactly in relation to the files that use them? for some reason a different script cant pickup my database is there where ever phpmyadmin put it by default.

Sponsor our Newsletter | Privacy Policy | Terms of Service