In Feburary 2016 27,
Navigate to the free Web Start Help masked forward-code generator endorsed by HostGator (see Resources).
Scroll down to the second section titled 'How do I create a masked forward? (frames).'
Type the title you want to appear at the top of your Web browser when someone visits your domain in the first field.
Type the full URL of the website where you want to redirect the domain in the second field. For example, if you want 'siteA.com' to redirect to 'siteB.com,' enter 'http://www.siteB.com' in the second field.
Click the submit button to generate the HTML code.
Launch Notepad from the 'Start' menu.
Copy and paste the HTML code generated earlier into the Notepad window.
Click 'File' and 'Save As.'
Type 'index.html' without the quotes for the file name and choose 'All files' for the file type. Choose the desktop for the save location. Click the 'Save' button.
Log in to your HostGator hosting account.
Click the 'File Manager' icon in the 'Files' section of the cPanel.
Select the site you wish to redirect from the 'Document root for' drop-down menu. This would be 'siteA.com' if you want to redirect from 'siteA.com' to 'siteB.com.' Click the 'Go' button.
Click the 'Upload' icon at the top of the screen.
Check the box beside 'Overwrite existing files' below the file upload fields.
Click the 'Browse' button and select the 'index.html' file from the desktop. Click the 'Open' button to upload the file and put the redirect mask in place.
In Feburary 2016 27,
Posts mit dem Label field werden angezeigt. Alle Posts anzeigen
Posts mit dem Label field werden angezeigt. Alle Posts anzeigen
Samstag, 27. Februar 2016
Samstag, 6. Februar 2016
How to Find Out Who a TollIn Feburary 2016 06,
In Feburary 2016 06,
Review your voice mail or answering machine for messages accompanying the call from the number in question. Many toll-free subscribers leave messages identifying themselves and explaining the reasons for their calls.
Conduct a reverse number search. Enter the number as it appears on your caller ID in the search field of your preferred Internet search engine.
Look up the number in a toll-free directory. One such directory is the National Tollfree Directory, which contains advertising listings of business toll-free numbers submitted by businesses (which means not all toll-free numbers are listed). Go to Internettollfree.com/800-number-reverse-lookup.html. In the center of the page, in the 'Find a Business' box, enter the phone number, press the 'Search' button, and review the results. If the toll-free number is in the database, information about it will be displayed.
Research the number in a user database. 800notes.com is a user database of phone numbers, including toll-free numbers, which provides user-supplied information such as the content of calls received, who owns numbers, frequency of received calls and more. Enter the toll-free phone number in the box toward the top of the web page, press the 'Search' button, and review the results.
In Feburary 2016 06,
Review your voice mail or answering machine for messages accompanying the call from the number in question. Many toll-free subscribers leave messages identifying themselves and explaining the reasons for their calls.
Conduct a reverse number search. Enter the number as it appears on your caller ID in the search field of your preferred Internet search engine.
Look up the number in a toll-free directory. One such directory is the National Tollfree Directory, which contains advertising listings of business toll-free numbers submitted by businesses (which means not all toll-free numbers are listed). Go to Internettollfree.com/800-number-reverse-lookup.html. In the center of the page, in the 'Find a Business' box, enter the phone number, press the 'Search' button, and review the results. If the toll-free number is in the database, information about it will be displayed.
Research the number in a user database. 800notes.com is a user database of phone numbers, including toll-free numbers, which provides user-supplied information such as the content of calls received, who owns numbers, frequency of received calls and more. Enter the toll-free phone number in the box toward the top of the web page, press the 'Search' button, and review the results.
In Feburary 2016 06,
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)