free applications,
Contents contributed and discussions participated by Chere B
Debugging Tutorial - 0 views
Web Programming :: 6-3: APIs - 0 views
-
-
Mac users - For your untarring needs click link below. There is also a little detail about the need to untar and how the practice evolved. http://mac.softpedia.com/get/Utilities/Untar.shtml
-
Black Eye Sally's - 0 views
Form Validator - 0 views
How to make an almond 7-up Bundt cake - 0 views
Recipe Comments - 0 views
Viddler.com - webprog-4-3 - Uploaded by halavais - 0 views
-
This is a link to a helpful tutorial page that defines some of the types in database. none of the examples in the lecture are text, but in the challenge the data is primarily text which lead me to believe that the type should be text. I received an error message when doing this. As I searched to find troubleshooting help I found that the varchar type also includes text.
MySQL :: Building a Database-Driven Web Site Using PHP and MySQL - 0 views
-
This site is very helpful for review. While I was able to complete the PHP assignments some of the concepts were a little hazy. This site is helpful if you would like further explanation. The author provides example code and breaks down each step in a way that is easy to understand. For instance. Here was one of the basic examples:\n\nLoops like these come in handy whenever you're working with long lists of things (such as jokes stored in a database... hint-hint!), but for now we'll illustrate with a trivial example: counting to ten.\n\n$count = 1;\nwhile ($count );\n $count++;\n}\n\nKind of scary-looking, I know, but let me talk you through it line by line.