lang="en-US"> Tutorials – Page 11 –  Design1online.com, LLC

Category: Tutorials

0

SQL Tutorial: Select, Update & Delete Syntax

Select Statements General Syntax SELECT [column], [column], [column] FROM [tablename] WHERE [column] = [value] Select All Columns SELECT * FROM [tablename] Limit # of Records Returned – MSSQL SELECT TOP [number] * FROM [tablename]...

0

HTML Tutorial: A Crash Course In Tables

It amazes me how many people proclaim to be programmers but they can’t even write simple HTML code. Sooo, this post is in response to all the would be web developers out there who...

1

PHP Tutorial: Learning PHP (Part 3)

In Part 2 I covered else-if statements and more complicated if statements. One of the other concepts that’s essential to learning any kind of programming is loops. There are three different types of loops...

1

PHP Tutorial: Learning PHP (Part 1)

When the Internet exploded in the .com age people were just starting to realize the potential of online programming languages. PHP, or Hypertext Preprocessing, is one of my favorite programming languages. One of the...

0

PHP Tutorial: Using the Google Maps API

Here’s a nice piece of code from a Zend Software Engineer. This shows you an example of how to use the google maps API with PHP: http://www.zimuel.it/blog/?p=23

1

Javascript Property Names for CSS getElementById

document.getElementById(“id_name_here”).style.property = your_value_here; CSS Property JavaScript Equivalent background background background-attachment backgroundAttachment background-color backgroundColor background-image backgroundImage background-position backgroundPosition background-repeat backgroundRepeat border border border-bottom borderBottom border-bottom-color borderBottomColor border-bottom-style borderBottomStyle border-bottom-width borderBottomWidth border-color borderColor border-left borderLeft border-left-color...