PHP - Lesson 3 (November 28th, 2007)
PowerPoint slides and examples all in one archive.
Filed under: PHP Class, Resources, Web Application Development | Tagged: class, database, php, sql | 3 Comments »
PowerPoint slides and examples all in one archive.
Filed under: PHP Class, Resources, Web Application Development | Tagged: class, database, php, sql | 3 Comments »
Seeing how our ASP.net book doesn’t say anything about System.Net.Mail,
I found this great resource with information: http://www.systemnetmail.com
You may also be interested in the differences between System.Web.Mail and System.Net.Mail, so take a look at the following website
Good luck,
-Anna
Filed under: WP Languages 1 | Tagged: System.Net.Mail | 1 Comment »
Love it or hate it, Dreamweaver is the de facto standard for web development and is used by many, many organizations. Here’s a document with all the Dreamweaver keyboard shortcuts to save you time and make you more productive.
Nik
Filed under: Tools | Tagged: Cheat Sheet, Dreamweaver, productivity | No Comments »
A List Apart has compiled statistics on web designers/ developers for 2007. Information on industry education levels, salary, and titles are all presented. All in all a very interesting read.
http://www.alistapart.com/d/2007surveyresults/2007surveyresults.pdf
Nik
Filed under: Announcements, Resources | Tagged: A List Apart, industry, survey | No Comments »
I am posting the SQL file with structure and sample data ahead of time so you can take a look at it before the class. It’s not mandatory, but it will give you an idea of what we are going to discuss. It’s very simple - just one table with 4 fields (id, fname, lname, [...]
Filed under: PHP Class, Resources, Web Application Development | Tagged: class, database, php, sql | No Comments »
Slides: PHP - Lesson 1 (November 14th, 2007)
XAMPP Download
Example PHP files. I had to upload these somewhere else, because WP.com won’t allow .zip files. These are not exactly the same files that I was doing in class. I cleaned them up and incorporated everything we’ve talked about. I also included a bunch of comments. If [...]
Filed under: PHP Class, Resources, Tools, Web Application Development | Tagged: class, lesson, php, xampp | No Comments »
Hi fellow programmers,
I found a great website where you can find HTML versions of some computer books.
http://freecomputerbooks.com
Hope it helps with studying.
–Anna.
Filed under: General Information, Resources | No Comments »
Hi all,
I talked to one of my coworkers, who has written many formal reports, and he suggested I take a look at the following link for tips:
http://www.pro-technical-writing.com/business-report-writing.html
Have fun,
–Anna
Filed under: Reporting Technical Information | No Comments »
Four Types of Errors to Expect
COMPILE ERRORS - Will see in compiler
DESIGN ERRORS - Check forms, html etc.
LOGIC ERRORS - Conditions etc
RUNTIME ERRORS
Examples of Errors:
Error:
Operator == cannot be applied to operands of type ’string’ and ‘int’
if (txtLastName.Text == 0)
Answer:
if (txtLastName.Text.Trim().Length == 0)
Using Trim() removes trailing whitespace. (Best Answer)
Using Length (Good Answer)
txtLastName.Text [...]
Filed under: WP Languages 1 | No Comments »