View Single Post
  #5 (permalink)  
Old 08-07-2007, 11:14 AM
Lee's Avatar
Lee Lee is offline
PT Staff*
Awards Showcase
Quality Tutorial 
Total Awards: 1
Join Date: Jun 2007
Location: Blackpool, UK
Posts: 616
iTrader: (0)
Lee is just really niceLee is just really niceLee is just really niceLee is just really nice
I will give more infomation, here is my current code:
PHP Code:
    function GetSubject()
    {
        
$reason $_POST['reason'];
        
$subject "Noobio Contact $reason";
    }

//When i run i call by using
GetSubject(); 
Once that code is run i want to be able to use $subject in the mail function:
mail()

Where as using echo will write it to the page.
Reply With Quote