In Feburary 2016 26,
Press 'Mail' if your GoDaddy email account is the first you're setting up on the iPhone. If you have other email accounts, press 'Settings' and then 'Mail.'
Choose 'Add Account' under 'Accounts.'
Select 'Other' when you are prompted to choose what type of account you want to add. Choose 'POP' on the next screen.
Enter your name, email address and a description of the email address that will help you identify it among the others on your iPhone.
Find the 'Incoming Mail Server' part of the email set up. Enter 'pop.secureserver.net' as the host name, your entire email address as the 'user name' and the password that goes with the email account.
Locate the 'Outgoing Mail Server' part of the set up. Type 'smtpout.secureserver.net' as the host name, your full email address as the 'user name' and your password again.
Finish setting up your account. Verify that it works by sending yourself a test email message.
In Feburary 2016 26,
Posts mit dem Label add werden angezeigt. Alle Posts anzeigen
Posts mit dem Label add werden angezeigt. Alle Posts anzeigen
Freitag, 26. Februar 2016
Dienstag, 23. Februar 2016
How to Word a Double Baby Shower InvitationIn Feburary 2016 23,
In Feburary 2016 23,
Start the invitation by immediately letting guests know they are being invited to a double baby shower. A Noah's Ark 'two by two' theme will work perfectly and be very cute, as well. Use very clear wording to communicate the double event, such as 'You're invited to celebrate with Lisa and Jane, as they are both expecting!' Use the family last name, if it is the same for both babies, or list all of the expecting parents' names.
Reiterate that the shower is for two expecting moms more than once in the invitation. For example, on the inside you can add a verse such as, 'Bottles, diapers and laundry in a heap... Lisa and Jane will soon have no sleep!'
Inform guests of the gender of both babies, if known. For example, 'Oh boy! Oh boy! Lisa and Jane are both having boys! We're 'expecting' you to join us!'
Opt for a unified cover with separate inside information. For example, the front can say, 'Two bundles of joy are on their way, so please reserve this special day.' Then, use each of the inside panels of the invitation to give separate details. For example, on the left side you could write 'Tea parties, baby dolls and dress up clothes, Jane's having a girl who'll wear ribbons and bows!' On the right side, you could say 'Trains, motorcycles and automobiles, Lisa's having a boy who'll love cool toys with wheels!' The lower half of both panels can share the day, time and RSVP information for the shower.
Write out all of the information you'd like to include on the invitation, including registry information for both mothers, if available. If you only have registry information for one mother, do not include it. Everything has to be treated equally for both. Once you have the invitation written in a way that you like, order or print the actual invitations.
In Feburary 2016 23,
Start the invitation by immediately letting guests know they are being invited to a double baby shower. A Noah's Ark 'two by two' theme will work perfectly and be very cute, as well. Use very clear wording to communicate the double event, such as 'You're invited to celebrate with Lisa and Jane, as they are both expecting!' Use the family last name, if it is the same for both babies, or list all of the expecting parents' names.
Reiterate that the shower is for two expecting moms more than once in the invitation. For example, on the inside you can add a verse such as, 'Bottles, diapers and laundry in a heap... Lisa and Jane will soon have no sleep!'
Inform guests of the gender of both babies, if known. For example, 'Oh boy! Oh boy! Lisa and Jane are both having boys! We're 'expecting' you to join us!'
Opt for a unified cover with separate inside information. For example, the front can say, 'Two bundles of joy are on their way, so please reserve this special day.' Then, use each of the inside panels of the invitation to give separate details. For example, on the left side you could write 'Tea parties, baby dolls and dress up clothes, Jane's having a girl who'll wear ribbons and bows!' On the right side, you could say 'Trains, motorcycles and automobiles, Lisa's having a boy who'll love cool toys with wheels!' The lower half of both panels can share the day, time and RSVP information for the shower.
Write out all of the information you'd like to include on the invitation, including registry information for both mothers, if available. If you only have registry information for one mother, do not include it. Everything has to be treated equally for both. Once you have the invitation written in a way that you like, order or print the actual invitations.
In Feburary 2016 23,
Samstag, 20. Februar 2016
How to Use 301 Redirect MobileIn Feburary 2016 20,
In Feburary 2016 20,
Open the homepage document for your website in a text or HTML editor. Place your cursor just above the '
' tag and hit 'Enter' once to create a blank line.
Copy the following code and paste it on the blank line:
Replace 'filename.html' with the name of your mobile page, relative to your site root. For example:document.location = '/m/index.html';Or:document.location = 'mobile.html';This code will redirect any device with a screen width below 699 pixels to your mobile site. You may adjust the screen width to 480 if you want to target iPhones and other Smartphones specifically or add the following function just above the '//-->' line:if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {location.replace('http://www.yoursite.com/iPhone.html');}Replace ' http://www.yoursite.com/iPhone.html' with the URL to your iPhone-optimized website.
jQuery Method
Open your homepage or header document in a text or HTML editor and verify the jQuery library has been included. If not, you will need to add it just above the '
' tag. The line should look something like this:
Replace 'www.yoursite.com' with the URL to your mobile-optimized site and your tablet-optimized site. Other redirects normally treat tablet browsers like a mobile device, which can be undesirable. For example, this redirect allows you to point iPad users to your normal site, and iPhone users to a mobile version:
mobile_url : 'm.mysite.com',tablet_url : 'www.mysite.com',
PHP Method
Open the document containing your website header, such as 'header.php' or 'index.php.' Place your cursor at the beginning of the document and hit 'Enter' to create a blank line.
Copy the following code block and paste it into the blank line:
Replace the URL after 'Location:' on the last line with the URL to your mobile-optimized page. For example:header('Location: http://www.mysite.com/mobile.php'); ?>Or:header('Location: http://m. mysite.com/'); ?>
Server-Side Method
Connect to your Web server using your hosting control panel or an FTP program. Edit the '.htaccess' file. If you are not able to edit files directly, download the file to your Desktop and open it using Notepad. If you do not have an '.htaccess' file, open Notepad and create a new document.
Paste the following code block into the file. If you're editing an existing file, paste this code at the bottom to avoid overwriting any existing rules:redirect mobile browsersRewriteCond %{HTTP_USER_AGENT} ^.
iPhone.
$RewriteRule ^(.*)$ http://mobile.yourdomain.com [R=301]RewriteCond %{HTTP_USER_AGENT} ^.
BlackBerry.
$RewriteRule ^(.*)$ http://mobile.yourdomain.com [R=301]RewriteCond %{HTTP_USER_AGENT} ^.
Palm.
$RewriteRule ^(.*)$ http://mobile.yourdomain.com [R=301]This redirect is optimal, as it will only send devices with mobile browsers to your mobile website, leaving other devices with full-featured Web browsers alone.
Replace ' http://mobile.yourdomain.com' with the URL to your mobile-optimized page. For example:RewriteRule ^(.*)$ http://www.mysite.com/m [R=301]Save the file. If using Notepad, make sure 'All Files' is selected in the 'File Type' menu, and name the file '.htaccess' with no '.txt' extension. Upload the file to your domain's root folder.
In Feburary 2016 20,
Open the homepage document for your website in a text or HTML editor. Place your cursor just above the '
' tag and hit 'Enter' once to create a blank line.
Copy the following code and paste it on the blank line:
Replace 'filename.html' with the name of your mobile page, relative to your site root. For example:document.location = '/m/index.html';Or:document.location = 'mobile.html';This code will redirect any device with a screen width below 699 pixels to your mobile site. You may adjust the screen width to 480 if you want to target iPhones and other Smartphones specifically or add the following function just above the '//-->' line:if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {location.replace('http://www.yoursite.com/iPhone.html');}Replace ' http://www.yoursite.com/iPhone.html' with the URL to your iPhone-optimized website.
jQuery Method
Open your homepage or header document in a text or HTML editor and verify the jQuery library has been included. If not, you will need to add it just above the '
' tag. The line should look something like this:
Replace 'www.yoursite.com' with the URL to your mobile-optimized site and your tablet-optimized site. Other redirects normally treat tablet browsers like a mobile device, which can be undesirable. For example, this redirect allows you to point iPad users to your normal site, and iPhone users to a mobile version:
mobile_url : 'm.mysite.com',tablet_url : 'www.mysite.com',
PHP Method
Open the document containing your website header, such as 'header.php' or 'index.php.' Place your cursor at the beginning of the document and hit 'Enter' to create a blank line.
Copy the following code block and paste it into the blank line:
Replace the URL after 'Location:' on the last line with the URL to your mobile-optimized page. For example:header('Location: http://www.mysite.com/mobile.php'); ?>Or:header('Location: http://m. mysite.com/'); ?>
Server-Side Method
Connect to your Web server using your hosting control panel or an FTP program. Edit the '.htaccess' file. If you are not able to edit files directly, download the file to your Desktop and open it using Notepad. If you do not have an '.htaccess' file, open Notepad and create a new document.
Paste the following code block into the file. If you're editing an existing file, paste this code at the bottom to avoid overwriting any existing rules:redirect mobile browsersRewriteCond %{HTTP_USER_AGENT} ^.
iPhone.
$RewriteRule ^(.*)$ http://mobile.yourdomain.com [R=301]RewriteCond %{HTTP_USER_AGENT} ^.
BlackBerry.
$RewriteRule ^(.*)$ http://mobile.yourdomain.com [R=301]RewriteCond %{HTTP_USER_AGENT} ^.
Palm.
$RewriteRule ^(.*)$ http://mobile.yourdomain.com [R=301]This redirect is optimal, as it will only send devices with mobile browsers to your mobile website, leaving other devices with full-featured Web browsers alone.
Replace ' http://mobile.yourdomain.com' with the URL to your mobile-optimized page. For example:RewriteRule ^(.*)$ http://www.mysite.com/m [R=301]Save the file. If using Notepad, make sure 'All Files' is selected in the 'File Type' menu, and name the file '.htaccess' with no '.txt' extension. Upload the file to your domain's root folder.
In Feburary 2016 20,
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,
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,
Labels:
add,
address,
enter,
field,
message,
optionally,
preferences,
Remember,
simple,
user
Abonnieren
Posts (Atom)