lang="en-US"> PHP – Page 4 –  Design1online.com, LLC

Tagged: PHP

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

0

SQL Server 2005, Select All Tables & Fields

SQL: select table_name, column_name, data_type, character_maximum_length, is_nullable from information_schema.columns where table_name in (select name from sysobjects where xtype=’U’) order by table_name

0

Contract PHP/MySQL Programmer Needed

Are you passionate about games?!? Like animals? Do you live in Northern Virginia? Then perhaps you’re the person I’m looking for. My name is Jade and I started programming my first game when I...

3

Lesson 7: Pits of Doom — Join, Login & Lost Password

In the last lesson we created a database class to make doing queries quick and easy to handle. Then we converted over the current character file and map editor to use the database when...

3

Useful PHP Functions

I ask myself why type the same thing over and over again when you can just use one function call? I’ve seen a lot of people do that, so stop it! Save yourself the...