Posts mit dem Label preferences werden angezeigt. Alle Posts anzeigen
Posts mit dem Label preferences werden angezeigt. Alle Posts anzeigen

Sonntag, 21. Februar 2016

How to Plan a Funeral ReceptionIn Feburary 2016 21,

In Feburary 2016 21,
Get a family member, close friend or neighbor to help you plan the reception. You will need help the planning, making phone calls and deciding where you where the reception will be held. Possible locations for a reception are the church, the deceased person's house, family member's house, friend's house, neighbor's house, or at a restaurant. If you are very close to the deceased person, you need help in making arrangements for the funeral reception because you are in mourning, too.
Put one person in charge of receiving calls and calling all of the deceased person's family and friends. This person will spread information about where and when the funeral and reception will be held and provide directions to the functions. This person lets people know the deceased person's flower preferences or where to send money for charitable donation in the deceased's name.
Display photographs and memorabilia around the reception area. This reminds the guest of old times with the deceased and stimulates conversation about the deceased person.
Provide an area in the refrigerator for food brought in by relatives and friends. Have several bags of ice available for drinks. Put the foods and drinks on a table with several bowls of the ice. A funeral reception last for several hours, so take into consideration the possibility of food spoilage while it is on the table. Place the foods that need to be kept cold into deep trays filled with ice.
Stock the reception area with paper plates, hot and cold paper cups, various soft drinks tea, coffee, sugar, creamer, eating utensils, serving spoons, serving bowls and napkins.
Play some soft, uplifting music while the reception is going on.
Prepare a secluded area for rest or taking some private moments for the deceased's loved ones. Togetherness helps people get through the death of a loved one, but some people prefer not to show their emotions. This secluded area helps relieve tension in some people.
In Feburary 2016 21,

Mittwoch, 3. Februar 2016

How to Set Up an Email Form in WebsitesIn Feburary 2016 03,

In Feburary 2016 03,
Define the email form in your HTML document by using the 'form' element and specifying the method and action attributes. Here is an example line of the form opening tag: tag.
Create data-entry fields inside the form to meet your needs. It would make sense to have a field for the user to enter his name, email address and his message. You may optionally add other fields. Here is an example of how the HTML would look for a simple email form with those three fields. Remember that all of this goes inside the tags. Notice some of the attributes and their values. You can adjust these values to suit your preferences.
What is your name?
What is your e-mail address?
What is your message?
Create a PHP file to process the e-mail form once the user submits it. In a new document, copy and paste the following, remembering to replace 'your_email_address@provider.com' with your actual e-mail address, and 'comments_received.html' with the URL of the webpage on your site where you want the user to be redirected after she submits the form:// Build the e-mail
$to = 'your_email_address@provider.com';
$from = '$email';
$subject = 'E-Mail Contact Form';
$message =
'$name at $email said:
$message';
$headers = 'From: $email';// Send the mail using PHPs mail() function
mail($to, $subject, $message, $headers);// Redirect
header('Location: comments_received.html');
Save both files to the same folder on your website. Save the HTML document with the '.php' file extension rather than the usual '.html' one. Save the PHP file with the '.php' extension as well.
In Feburary 2016 03,