Forum: PHP Aug 22nd, 2009 |
| Replies: 3 Views: 228 Looking at the source code of this website:
http://superdialcouk.dmshop.biz/numbers/0207/choose.php?dmb1_SessRef=2009-08-22_15-29-14_8068_0003
What code do i copy and paste to get that... |
Forum: PHP Jun 3rd, 2009 |
| Replies: 7 Views: 321 i did try but sql was mainly involved from what i could gather
anyone else with anything constructive please do reply |
Forum: PHP Jun 3rd, 2009 |
| Replies: 7 Views: 321 PHP
<?php
$email = $_REQUEST['email'] ;
$subject = $_REQUEST['subject'] ;
$message = $_REQUEST['message'] ;
mail( "contact@superdial.co.uk", $subject,
$message, "From: $email" ); |
Forum: PHP Jun 3rd, 2009 |
| Replies: 7 Views: 321 thanks
so if i had say a html input field named "telephone"
the relavent php value for it would be $telephone?
would that go inside the $message() bit or $header() ? |
Forum: PHP Jun 3rd, 2009 |
| Replies: 7 Views: 321 Using php mail function allows a user of a wesbite to send email without opening up ther mail client, information such as subject message reply-to email address can be included.
With this... |