Tag Archives: computers

How to Build Your Own Website Training Videos
avatar

We finally did it! Mallory has been pushing me to start my video series and I’ve been putting it off because I don’t like to be on camera. I know she’s right though, I just need to do it. Even … Continue reading

Posted in building websites, homeschool, on technical stuff, online business | Tagged , , , , , , , , , , | 1 Comment

Firefox Fixed the Pop-up Window Problem on Dual Monitors

YAY Firefox!! I upgraded my browser yesterday and FINALLY, the long-time bug that keeps me from opening up a new browser window on my dual monitor is fixed! I am so excited! I usually work with my text editor open … Continue reading

Posted in building websites, on technical stuff | Tagged , , , , , , | Leave a comment

How to Make Money on Your Computer with Affiliate Marketing

percent sign

Last week I posted 10 ways to make money from home (or anywhere) with your computer. Today, I want to dig a little deeper into item number 1 on that list – Affiliate Marketing.

Many websites today have affiliate programs. This means that if you sign up with their affiliate program, you can sell their products or services for them and they will pay you a commission.

Continue reading

Posted in internet marketing, on life, on living your dreams, online business, wealth | Tagged , , , , , , , | 2 Comments

Building a Website: Text Editors

When you save something on a computer, it saves it to a file. The information inside that file may be in one of many different formats. The file name extension, which is the part of the name after the last … Continue reading

Posted in building websites, on technical stuff | Tagged , , , | Leave a comment

Updating Your Web Page Without Refreshing the Page

AjaxHopefully, after reading some of my latest posts, it’s very clear that visitors to your site are actually seeing your web page on their local computer.

The page may have been built on the fly at your hosting server using PHP and MySQL and then downloaded to the user’s computer, but by the time the visitor sees the page, it’s on their local computer.

Javascript code in the page may be making the web page more dynamic as well, but the user’s browser is handling the Javascript dynamics.

Since the user is viewing your web page on their local computer, any updates that need to be made to the page requiring PHP and/or MySQL must happen at the server level. This means that something on the page, such as a button or a link, must send another request to the server for the updated information. This used to require a page refresh.

The click of a link or a button would send the message to the server that another page was needed from the server. It might have been the same page with new, updated information, but as far as the server was concerned, it was a new page.

In other words, once the page has been built and sent to the user’s local computer, the only way to interact with the server is to send another request. This used to mean that the user’s browser would send the request and receive a new response to show a new page.

With advances in technology, advances in the languages that we now use for web development, and advances in our web browsers, it’s now possible to update specific sections of a page without refreshing the entire page. This has allowed web developers to create web ‘applications’ instead of just web ‘pages’. Web applications look and behave more like applications that you would run on your local computer. This new technology is called Ajax – Asynchronous Javascript and XML Continue reading

Posted in building websites, on technical stuff | Tagged , , , , , , , , , , , | 2 Comments