Hosting a professional blog on your own domain can be done for free in variety of ways. There are 3 major common blogging options I want to discuss here, that you can use for your own custom paid domain, without paying for the hosting portion. Blogger: This is google’s free blogspot hosting. Blogger now allows [...]
Simple Mail <!–p$subject = “Test mail”; $message = “Hello! This is a simple email message.”; $from = “someonelse@example.com”; $headers = “From: $from”; mail($to,$subject,$message,$headers); echo “Mail Sent.”;?> Html Mail (You can use images and other tags in mail) // multiple recipients $to = ‘aidan@example.com’ . ‘, ‘; // note the comma $to .= ‘wez@example.com’; // subject [...]
Receiving variables using GET Method $variablename = $_GET['formvariablename']; Note :The get method passes the variables along to the the php page from the form page by appending them onto the end of the URL. For example if the form is in the page formpage.html and the php page is submit.php . Inside the form tag [...]