In Feburary 2016 24,
Open the HTML source code page into which you desire to place the form containing a 'textarea' input box. In this example, you will be using 'sometext.html' as the HTML source page. The separate page with PHP code will be called 'displaysometext.php.' Both pages will be stored on the Web hosting server where your website is located.
Create the form section within the HTML source code, and tell the form that the data entered by the user will be submitted to the external PHP-enabled page. In the case of this example, the user data will be submitted to displaysometext.php. Enter the following line between the
and the
tags of the HTML page.Save the document to your computer as sometext.html and upload it to your Web hosting server.
Open a new page in your text editor and enter the following six lines of text.
Display Some Text PHP Script Page
?>
Save the page as displaysometext.php
Enter the following lines between the '
' lines that tells PHP to accept the text from the input box of the origination page. Remember that the name of the submit operation was 'comment.' When the user submits the form, that label will be submitted as the identifier for the text the user entered. The lines to accept this information should appear as follows.if(isset($_POST['submit'])){
$usercomments = $_POST['comment'];'
Have your PHP script do something with the text the user entered. This can be something as simple as printing to the Web browser what the user entered on the original page. In this example, type the following three lines.echo 'The information you entered was as follows:';
echo $usercomments;
}
Save the 'displaysometext.php' page code to your computer, then upload it into the same directory of the Web hosting server that contains HTML page containing the input box.
Point your browser to the HTML page that accepts the user input. That page, in this example, would be 'sometext.html'. Enter some text into the input box, then click the 'Submit Comments' button below it. Note that the small PHP code snippet in the 'displaysometext.php' page processes and displays everything you entered on a new Web page.
In Feburary 2016 24,
Posts mit dem Label located werden angezeigt. Alle Posts anzeigen
Posts mit dem Label located werden angezeigt. Alle Posts anzeigen
Mittwoch, 24. Februar 2016
Dienstag, 23. Februar 2016
How to Upgrade Microsoft Office for FreeIn Feburary 2016 23,
In Feburary 2016 23,
Open the Internet browser and navigate to the 'Office.Microsoft.com' website. Once on the page select 'Downloads' to view all the areas open for downloads.
Choose the kind of upgrade you want for your programs (located in the 'Browse Office Marketplace), then click the available resource. This brings up additional features available under the specific kind of update you are seeking.
Click the 'Download' link next to the upgrade you have chosen and the information downloads to the computer.
Double-click the downloaded file to open the installation wizard. Follow the prompts of the installation wizard to completely setup the upgrade into your Microsoft Office program package.
In Feburary 2016 23,
Open the Internet browser and navigate to the 'Office.Microsoft.com' website. Once on the page select 'Downloads' to view all the areas open for downloads.
Choose the kind of upgrade you want for your programs (located in the 'Browse Office Marketplace), then click the available resource. This brings up additional features available under the specific kind of update you are seeking.
Click the 'Download' link next to the upgrade you have chosen and the information downloads to the computer.
Double-click the downloaded file to open the installation wizard. Follow the prompts of the installation wizard to completely setup the upgrade into your Microsoft Office program package.
In Feburary 2016 23,
Montag, 22. Februar 2016
How to Find Where a Domain Is Hosted?In Feburary 2016 22,
In Feburary 2016 22,
Find the location of a domain using 2Privacy's free utility). Enter the domain's name or IP address into the utility's 'IP or Domain Name' field.
Type the captcha code into the 'Code' box -- the captcha code is located to the right of the Code box.
Click on the utility's 'Check Location' box to get the location registered to the domain. The Web page will refresh and then display the domain's physical address.
Seo Mastering
Locate a domain's location using Seo Mastering's 'IP Address - Domain name Location' utility. Enter the domain into the utility's 'Enter IP address or domain name' field.
Enter the code in the utility's captcha into the utility's 'Image Verification' field.
Click 'Continue' to look up the location of the domain. The utility will plot the location of the queried domain onto an embedded Google map.
IP Address Location
Use IP Address Location's 'IP Who Is Domain name or Whois IP Address' utility to find the location of a domain. Clear out the text in the utility's 'Domain Whois IP Lookup Address' field.
Type the domain you would like to query into the 'Domain Whois IP Lookup Address' field.
Click on the utility's 'Check IP WhoIS Address' button to find the location registered to the domain's server.
In Feburary 2016 22,
Find the location of a domain using 2Privacy's free utility). Enter the domain's name or IP address into the utility's 'IP or Domain Name' field.
Type the captcha code into the 'Code' box -- the captcha code is located to the right of the Code box.
Click on the utility's 'Check Location' box to get the location registered to the domain. The Web page will refresh and then display the domain's physical address.
Seo Mastering
Locate a domain's location using Seo Mastering's 'IP Address - Domain name Location' utility. Enter the domain into the utility's 'Enter IP address or domain name' field.
Enter the code in the utility's captcha into the utility's 'Image Verification' field.
Click 'Continue' to look up the location of the domain. The utility will plot the location of the queried domain onto an embedded Google map.
IP Address Location
Use IP Address Location's 'IP Who Is Domain name or Whois IP Address' utility to find the location of a domain. Clear out the text in the utility's 'Domain Whois IP Lookup Address' field.
Type the domain you would like to query into the 'Domain Whois IP Lookup Address' field.
Click on the utility's 'Check IP WhoIS Address' button to find the location registered to the domain's server.
In Feburary 2016 22,
Donnerstag, 18. Februar 2016
Can I Host My Own Website on My Computer?In Feburary 2016 18,
In Feburary 2016 18,
When hosting a website, upload speed is critical. Incoming traffic on a web server consists mostly of page requests, which are small packets of information easily handled by a broadband connection. The web server responds to a request by sending (uploading) the information on the server to the remote computer. Most Internet service providers (ISPs) base their connection speeds on the available download bandwidth. Upload speeds are generally half of the rated download. You will need at least a DSL connection to host a website that loads on a remote computer in a reasonable amount of time.
Hardware
A web server doesn't necessarily have to be a powerhouse computer. It simply handles file requests and sends requested pages and information. Don't use your personal computer though. When you host an Internet site, you are inviting everyone in the world to access your host computer. Any personal information located on the server will be considered fair game by hackers.In addition to a server computer, you will need a router to direct Internet traffic through your local network onto the web. The router should be capable of port forwarding (all http requests go through port 80) and should have physical Ethernet ports to connect to the server. Wi-Fi connections aren't as fast or reliable as hard-wired connections.
Software
Special web server software is necessary to set a computer up as a web host. Microsoft Internet Information Server can be downloaded free from the Microsoft website. It allows users to host websites on Windows-based PCs. Linux, Apache, MySQL and myPHP (LAMP) is another free option for web hosting software. In a LAMP installation, Linux is the base operating system, Apache functions as the web server, MySQL is the database engine and myPHP processes host PHP script requests. LAMP is available free for Ubuntu, Debian and SUSE installations as well as commercial Linux releases like Red Hat.
Address
You will need to register a domain name, like myhomedomain.com, so visitors can locate your server. There is a small fee associated with this. Domain registrars offer a variety of services for a variety of prices. Once the domain name is registered, you will have to submit it to a DNS server. Unlike domain registration, this step is available as a free service from some organizations. The last portion of your address to consider is whether you have a static or dynamic IP address. A static IP address never changes. This makes it easier for the DNS servers to keep track of your website and is required by some e-commerce applications. Dynamic IP addresses change periodically. Most ISPs have an additional charge for static IP addresses.
In Feburary 2016 18,
When hosting a website, upload speed is critical. Incoming traffic on a web server consists mostly of page requests, which are small packets of information easily handled by a broadband connection. The web server responds to a request by sending (uploading) the information on the server to the remote computer. Most Internet service providers (ISPs) base their connection speeds on the available download bandwidth. Upload speeds are generally half of the rated download. You will need at least a DSL connection to host a website that loads on a remote computer in a reasonable amount of time.
Hardware
A web server doesn't necessarily have to be a powerhouse computer. It simply handles file requests and sends requested pages and information. Don't use your personal computer though. When you host an Internet site, you are inviting everyone in the world to access your host computer. Any personal information located on the server will be considered fair game by hackers.In addition to a server computer, you will need a router to direct Internet traffic through your local network onto the web. The router should be capable of port forwarding (all http requests go through port 80) and should have physical Ethernet ports to connect to the server. Wi-Fi connections aren't as fast or reliable as hard-wired connections.
Software
Special web server software is necessary to set a computer up as a web host. Microsoft Internet Information Server can be downloaded free from the Microsoft website. It allows users to host websites on Windows-based PCs. Linux, Apache, MySQL and myPHP (LAMP) is another free option for web hosting software. In a LAMP installation, Linux is the base operating system, Apache functions as the web server, MySQL is the database engine and myPHP processes host PHP script requests. LAMP is available free for Ubuntu, Debian and SUSE installations as well as commercial Linux releases like Red Hat.
Address
You will need to register a domain name, like myhomedomain.com, so visitors can locate your server. There is a small fee associated with this. Domain registrars offer a variety of services for a variety of prices. Once the domain name is registered, you will have to submit it to a DNS server. Unlike domain registration, this step is available as a free service from some organizations. The last portion of your address to consider is whether you have a static or dynamic IP address. A static IP address never changes. This makes it easier for the DNS servers to keep track of your website and is required by some e-commerce applications. Dynamic IP addresses change periodically. Most ISPs have an additional charge for static IP addresses.
In Feburary 2016 18,
Samstag, 13. Februar 2016
How to Change the Main Index Page on GoDaddyIn Feburary 2016 13,
In Feburary 2016 13,
Visit the GoDaddy and log into the 'Account Manager.' Enter your 'Login Name' and 'Password' into the relevant text fields and click on the 'Secure Login' button.
Click on the 'Web Hosting' option in the 'Products' section.
Click on the 'Launch' option in your Web hosting account.
Click on the 'File Manager' option, which is located in the Content section. This will automatically open the file manager in the root directory of the Web hosting account. Typically, this is the location in which your index file will be located.
Click on the 'Upload' option in the menu bar and then the 'Browse' option to select the index file to upload your index file. The file will be labelled 'index' and will have one of the following file extensions: htm, html, php, asp or aspx; for example, the file might be 'index.html.' Finally, click on the 'Upload' button to confirm the upload of this file.
In Feburary 2016 13,
Visit the GoDaddy and log into the 'Account Manager.' Enter your 'Login Name' and 'Password' into the relevant text fields and click on the 'Secure Login' button.
Click on the 'Web Hosting' option in the 'Products' section.
Click on the 'Launch' option in your Web hosting account.
Click on the 'File Manager' option, which is located in the Content section. This will automatically open the file manager in the root directory of the Web hosting account. Typically, this is the location in which your index file will be located.
Click on the 'Upload' option in the menu bar and then the 'Browse' option to select the index file to upload your index file. The file will be labelled 'index' and will have one of the following file extensions: htm, html, php, asp or aspx; for example, the file might be 'index.html.' Finally, click on the 'Upload' button to confirm the upload of this file.
In Feburary 2016 13,
Dienstag, 9. Februar 2016
How to Create UPC Codes for FreeIn Feburary 2016 09,
In Feburary 2016 09,
Navigate your web browser to the UPC/EAN Barcode Generator' on Barcodes Inc.'s website (see References).
Type your barcode's text or numerical values into the field labeled 'Value to encode' and select your UPC format from the drop-down menu located next to the 'Mode' heading.
Click on the 'Make Barcode' button to generate your UPC code.
Barcoding
Use the 'Free Barcode Generator' utility at the Barcoding website (see References).
Enter your barcode values into the 'Barcode Data' field. Select your UPC variant from the list of barcode types in the drop-down menu located next to the 'Barcode Symbology' heading.
Select an output image type for your barcode from the drop-down menu labeled 'Output Format.'
Click on the 'Generate Barcode' button to create your UPC code.
Byte Scout
Download and install a free copy of ByteScout Barcode Generator (see References). Launch the program after you've installed it.
Click on the drop-down menu under the 'Symbology' heading and then select your desire UPC format from the list of barcode types.
Enter your text or numerical data into the field labeled 'Value to Encode,' and then click on the 'Generate' button to create your UPC code.
Click on the 'Save to file' button on the left side of the program to save your UPC code as an image file.
In Feburary 2016 09,
Navigate your web browser to the UPC/EAN Barcode Generator' on Barcodes Inc.'s website (see References).
Type your barcode's text or numerical values into the field labeled 'Value to encode' and select your UPC format from the drop-down menu located next to the 'Mode' heading.
Click on the 'Make Barcode' button to generate your UPC code.
Barcoding
Use the 'Free Barcode Generator' utility at the Barcoding website (see References).
Enter your barcode values into the 'Barcode Data' field. Select your UPC variant from the list of barcode types in the drop-down menu located next to the 'Barcode Symbology' heading.
Select an output image type for your barcode from the drop-down menu labeled 'Output Format.'
Click on the 'Generate Barcode' button to create your UPC code.
Byte Scout
Download and install a free copy of ByteScout Barcode Generator (see References). Launch the program after you've installed it.
Click on the drop-down menu under the 'Symbology' heading and then select your desire UPC format from the list of barcode types.
Enter your text or numerical data into the field labeled 'Value to Encode,' and then click on the 'Generate' button to create your UPC code.
Click on the 'Save to file' button on the left side of the program to save your UPC code as an image file.
In Feburary 2016 09,
Montag, 8. Februar 2016
How to Get Free Streaming TV on Cell PhoneIn Feburary 2016 08,
In Feburary 2016 08,
Connect your cell phone to the Internet.
Download a free application for mobile phone that allows you get streaming TV. You can consider using EarthMediaCenter TV and SkyFire. (See Resources.)
Install the download on your cell phone.
Open the application. The free streaming application is usually located under the cell phone's 'Applications.'
Browse the different free channels. You will see the local channels available in your area. Free international channels like CNN, the CW and Sports TV, among others, will be displayed as well.
Select the channel that you want to watch and enjoy the show.
Using a Direct Internet Connection
Open your phone's browser and connect to the Internet.
Go to a website that streams television. A few that you can use are CBS, Hulu and sidereel. Shows are displayed by name or genre.
Click the show you want to watch.
In Feburary 2016 08,
Connect your cell phone to the Internet.
Download a free application for mobile phone that allows you get streaming TV. You can consider using EarthMediaCenter TV and SkyFire. (See Resources.)
Install the download on your cell phone.
Open the application. The free streaming application is usually located under the cell phone's 'Applications.'
Browse the different free channels. You will see the local channels available in your area. Free international channels like CNN, the CW and Sports TV, among others, will be displayed as well.
Select the channel that you want to watch and enjoy the show.
Using a Direct Internet Connection
Open your phone's browser and connect to the Internet.
Go to a website that streams television. A few that you can use are CBS, Hulu and sidereel. Shows are displayed by name or genre.
Click the show you want to watch.
In Feburary 2016 08,
Sonntag, 7. Februar 2016
How to Add Video to CraigslistIn Feburary 2016 07,
In Feburary 2016 07,
Go to a video hosting website like YouTube. Go to a page with the video to add to Craigslist. If the video is local to your computer, create an account and upload the video to the service. Take note of the URL where the video is located.
Go to Craigslist. Choose the city, country or region appropriate to the posting. On the top left corner of the page, click on the link to 'Post to classifieds.' Choose the type of posting and location for the classified.
Create a classified ad. Copy the URL from the video hosting website and past it into the body of the ad. Fill out the rest of the classified, including contact information, and inform readers about the video.
Publish the classified ad. If it was created using a registered Craigslist account, the task is complete. If it was created without an account, an email will be sent with a link to confirm the ad before publishing.
In Feburary 2016 07,
Go to a video hosting website like YouTube. Go to a page with the video to add to Craigslist. If the video is local to your computer, create an account and upload the video to the service. Take note of the URL where the video is located.
Go to Craigslist. Choose the city, country or region appropriate to the posting. On the top left corner of the page, click on the link to 'Post to classifieds.' Choose the type of posting and location for the classified.
Create a classified ad. Copy the URL from the video hosting website and past it into the body of the ad. Fill out the rest of the classified, including contact information, and inform readers about the video.
Publish the classified ad. If it was created using a registered Craigslist account, the task is complete. If it was created without an account, an email will be sent with a link to confirm the ad before publishing.
In Feburary 2016 07,
Abonnieren
Posts (Atom)