Archive for the ‘PHP’ Category
April 11th, 2007 by Rich Zygler
tags: PHP, SSH, Subversion, Zend IDE | No Comments »
Attempting to connect my new Windows machine with Zend Studio 5.1 using svn+ssh to an svn repository on Linux, I am obliged to once again stand on the shoulders of giants that have come before me. Here's some "how tos" that got me through it.
Logemann Blog - Subversion / ...
April 10th, 2007 by Rich Zygler
tags: MySQL, PHP | No Comments »
On my short list of things to check out soon are Delphi for PHP and Scibit's MyComponents for Mysql. It looks like Delphi gives you a "visual (RAD) framework for PHP" and MyComponents gives you the glue to Mysql. It's an interesting concept but I can't quite get my head ...
April 10th, 2007 by Rich Zygler
tags: PHP, Zend IDE | 4 Comments »
Tony Bibbs writes about his painful upgrade from Zend Studio 5.1 to 5.5. While I'm a huge Zend fanboy, I noticed it looked a bit painful too and have stayed at 5.1 at both home and office. Tony's main complaint is with remote debugging and the Zend Server vs ...
August 16th, 2006 by Rich Zygler
tags: AJAX, JSON, JavaScript, MySQL, PHP, XML | 1 Comment »
I'm working on a project where I thought a little AJAX magic would help the user interface a bit, so I've been adding that functionality piece by piece. For this web site, we've previously standardized on using the ADODB PHP database abstraction library for all our queries.
The particular circumstances ...
July 25th, 2006 by Rich Zygler
tags: PHP, XML | 5 Comments »
PHP Architect has an article in their June 2006 issue about using XForms within PHP5. If you don’t know what XForms is/are, you’d better look into it. It’s basically a way to describe forms on your page and all the data validation rules entirely in XML. ...
July 22nd, 2006 by Rich Zygler
tags: PHP, XML, XSL | 1 Comment »
So I’ve been working on this pretty big migration project lately, from PHP4 / MySQL 4 to PHP5 / MySQL5. It’s even larger because we’re moving from a largely procedural code base to using objects with inheritance and a lot of composition.
So what’s all that have to do with ...
July 17th, 2006 by Rich Zygler
tags: PHP | No Comments »
trim
(PHP 3, PHP 4 , PHP 5)trim -- Strip whitespace from the beginning and end of a string
Description
string trim ( string str [, string charlist])
You can also specify the characters you want to strip, by means ...
July 6th, 2006 by Rich Zygler
tags: JavaScript, PHP | No Comments »
A buddy at work fell in love with the Ajax Whois and wanted a version on his own linux site. I've been playing around with a lot of Ajax stuff lately so I thought I'd give it a go using Ajax (javascript) and PHP. Here's the resulting code.
It's ...