// author archive

shefeekj

shefeekj has written 34 posts for For Technical Information,Specification and Reviews

Free blog hosting on your own paid domain

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 [...]

Share

Sending an email in PHP

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 [...]

Share

POST & GET Method in PHP

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 [...]

Share

Enter your email address:

Delivered by FeedBurner