If you have been wanting to give your programming skills an object oriented upgrade but don’t really know where to take the plunge–go check out [url=http://books.slashdot.org/books/05/08/16/0434205.shtml?tid=169&tid=6]my review of PHP 5 Objects, Patterns and Practice[/url] from Apress.
August: Using Mail_Mime
Is PHP growing in Kansas City?
A quick search on Monster.com found 5 or 6 jobs in just the Olathe and Overland park areas. And a search on CareerBuilder.com yielded several more in KCMO and KCK. It seems that there are just as many (or more) PHP job postings as there are ASP.NET or JSP job postings.
What do you guys think? Is this a sign that businesses in the midwest are finally embracing PHP as their preferred development language? Or am I crazy?
Has anyone noticed an increase in PHP usage among area businesses?
June 16th, 2005
Job Prospects
There were others, but I don’t want to announce them here, unless you want to. You know who you are. 😉
Doug is looking for content management
Doug asked a question like “My clients need a CMS to edit simple websites, but they shouldn’t need to know any html, or anything.”
Helen suggested looking into DreamWeaver templates, as mostly his issue is providing a safty-net from his client’s own…creativity. We all agreed that this would be a good solution for many clients.
The lite section opensourcecms.com was also suggested as a place to look. After the meeting, I found cmsimple and sapid as possible candidates. Sapid looks really, really cool…and appears to be just downright perfect for this. Very clicky/sqishy…although the opensourcecms install is a little horked. Once you are logged in, just append ?mode=edit to the url of any page you want to switch into edit more. The edit button in the toolbar seems to be broken…but again, I’m sure it would work in your own install.
Helen is looking for a single page, easy update solution
The best I could think of was using something like [url=http://www.dynarch.com/projects/htmlarea/]HTMLArea[/url], and let it post to a password-protected php script that would get the html and save the file.
So, say your user’s only saw mypage.php:
mypage.php
[code]
This is my page
include(‘uploaded_page.inc’);
[/code]
Then, write up a simple php script…let’s call it uploader.php. It could draw a form using an html area. It should probably load the uploaded_page.inc file and put it in the html area.
On form submit, write the html-area into uploaded_page.inc.
This should naturally be password protected. You would also want to be careful not to let it write to any other page on your site, etc. But it should be fairly straightforward.
CSS: Any good info?
The topic of CSS came up as well. I’m a huge fan of it, and went on my pre-programmed rant of why it is a good thing. If you are interested, you may want to check on this handful of links:
Anything Else?
I’m sure I have missed a ton of things. Feel free to add anything I missed, or any additional information as a comment.
See you all next month!!
It’s your birthday, PHP!
[url=http://groups.google.ch/groups?selm=3r7pgp%24aa1%40ionews.io.org&oe=UTF-8&output=gplain]Happy Birthday PHP![/url] My how you have grown.
Get Involved! Help out a great guy, and get loads of exp. points!
[b]Help Jared finish this remarkable ERP/MRP system! [/b]
Are you looking for a nice Open Source, PHP/MySQL Project to contribute to? How about something nice and impressive to add to your resume? Look no farther than BrotherJonathan. Nearly complete, this project just needs a little TLC to take it to it’s 1.0 release! And you can help!
Visit [url=http://www.brotherjonathan.org/]brotherjonathan.org[/url] for more information, screenshots, demos and downloads!
Welcome Selia; our youngest little PUG!
$dholmes->setFreeTime(“.01%”);
echo $dholmes->getStatusMessage();
echo $rholmes->getStatusMessage();
echo $selia->getStatusMessage();
?>[/code]
[b]Result[/b]…
Becky Holmes is doing quite well–thanks for asking.
Selia Avery Holmes is doing quite well. She has returned to her birthweight of 8 lbs and 6 oz and makes a lot of funny noises throughout the day and night. Additional information will be accessible following the activation of the NaturalLanguage composite extension.[/quote]
Hungry for Cake
Free PHP 5 Book
[i]EDITOR: Read more for all the details, including the table of contents.[/i]
Foreword by Zeev Suraski
Preface: Introduction and Background
Chapter 1: What Is New in PHP 5?
Chapter 2: PHP 5 Basic Language
Chapter 3: PHP 5 OO Language
Chapter 4: PHP 5 Advanced OOP and Design Patterns
Chapter 5: How to Write a Web Application with PHP
Chapter 6: Databases with PHP 5
Chapter 7: Error Handling
Chapter 8: XML with PHP 5
Chapter 9: Mainstream Extensions
Chapter 10: Using PEAR
Chapter 11: Important PEAR Packages
Chapter 12: Building PEAR Components
Chapter 13: Making the Move
Chapter 14: Performance
Chapter 15: An Introduction to Writing PHP Extensions
Chapter 16: PHP Shell Scripting
A. PEAR and PECL Package Index
B. phpDocumentor Format Reference
C. Zend Studio Quick Start
Index
I have not gotten a chance to look through it yet; as soon as I found out I rushed over here to tell everyone. Also if it’s free how could you go wrong.
ENJOY!
Al
2005-April: Form Processing
For now, the [url=http://www.shazpro.com/presentations/kcpug_forms/form_presentation.swf]meeting notes are hosted here[/url].
A [url=http://www.shazpro.com/presentations/kcpug_forms/multipage_register.php]functional example of a multipage form with source code[/url] is also available.