Posts Tagged ‘together’

How do PHP and MySQL work together?

Thursday, July 24th, 2008

PHP and MySQL compliment each other to do with neither can do alone. PHP can collect data, and MySQL can in turn store the information. PHP can create dynamic calculations, and MySQL can provide it with the variables it uses. PHP can create a shopping cart for your web store, but MySQL can then keep the data in a format PHP can use to create receipts on demand, show current order status, or even suggest other related products.

Although PHP and MySQL can each be used independently, when you put them together it opens up countless possibilities for your site. As the internet progresses, it becomes more and more necessary to deliver dynamic content to keep up with the demands of web surfers and their desire to have information instantly delivered to them online. By learning to use PHP and MySQL you can deliver this information to them on demand.

What is MySQL?

Thursday, July 24th, 2008

MySQL is a relational database system that is used to store information. MySQL can store many types of data from something as tiny as a single character to as large as complete files or graphics. Although it can be accessed by most programing languages, it is often coupled with PHP because they work together with ease.

Information stored in a MySQL database hosted on a web server can be accessed from anywhere in the world with a computer. This makes it a good way to store information that needs the ability to change over time, but also needs to be accessed over the net. Some examples that can utilize MySQL are a web message board or a customer’s shipping status.

Searching For Required Words

Tuesday, July 15th, 2008

You can type the plus sign (+) or the word AND before a word to require that it be found in all of the search results. For example, giants +baseball (include a space between the first word and the + symbol) or giants AND baseball returns all listings that contain “baseball” and “giants” but not necessarily together.

Content and navigation must be handled together

Wednesday, June 25th, 2008

A really common format for sites right now is what l called a “Shell Site”. These sites are where the navigation is developed and then the content is shoved into that format or shell. What he found was that when a user is looking for information, shell sites are very hard to use. Because the links are the same on all navigation within the site, they don’t add anything new once they have been reviewed. Thus, when a user is looking for information, the navigation shell is usually discarded as an information source immediately.