News Feed
Sections

News Archive


Community Events






Don't see your event here?
Let us know!


feed this:

Andy Frey's Blog:
JavaScript PHP Remoting Demonstration
1 comment :: posted Saturday June 28, 2008 @ 16:22:17
voice your opinion now!

Andy Frey dropped us a line to tell us about a method he's come up with to make a remoting interface between Javascript and PHP5.

This is a demonstration of a very fast and easy way to build AJAX-type applications where communications between JavaScript on the client side and PHP5 on the server side is ideal. This library makes development of such systems fast and very simple.

In his example he shows how to create the PHP and Javascript functions that let the service talk back and forth. He defines a simple "Hello World" style application to show how it would be structured. He also includes a bit of more complex that has other functionality - getting a value out of an array and returning a property/private variable from the backend class.

tagged with: javascript remoting demo ajax interface object


Community News:
Webinar Today for Zend Framework/Dojo Partnership
0 comments :: posted Tuesday May 27, 2008 @ 07:32:53
voice your opinion now!

Zend will be hosting a webinar this morning for all those interesting in hearing about the new partnership between them and the Dojo framework to bring fully-developed javascript functionality to the Zend Framework.

Zend is excited to announce a partnership between Dojo and Zend Framework. The goal is to deliver a one-stop solution for building rich internet applications with PHP & Ajax. Zend’s co-founder and chief technical officer Andi Gutmans discusses this announcement in-depth on his blog and Zend architect Matthew Weier O’Phinney also provides code samples and more details in a separate post.

The webinar will provide an overview of the integration that's going to happen and a bit of Q&A from those listening in. The event will be happening at 9am PDT/4pm GMT and you'll need to register to save your spot and get in.

tagged with: zend zendframework dojo partnership webinar javascript

Community News:
Zend and Dojo Partnership for Ajax in the Zend Framework
0 comments :: posted Wednesday May 21, 2008 @ 16:17:44
voice your opinion now!

In his keynote this morning Andi Gutmans announced some other big news (see here for the other announcement) at the php|tek conference currently being held in Chicago - that Zend and the Dojo framework were teaming up to provide an "out-of-the-box" Ajax solution included with the Zend Framework.

Several members of the community have already blogged about it including:

So far, all of the comments have been good and the partnership has been well received. Matthew included in hist post a few of the places they're already planning on "ajaxing" in the Zend Framework (including the forms and the JSON-RPC server).

tagged with: ajax zendframework dojo javascript client library readymade

Kae Verens' Blog:
efficient JS minification using PHP
0 comments :: posted Wednesday May 21, 2008 @ 10:25:35
voice your opinion now!

In a new post today, Kae Verens takes a look at a method for easy and quick javascript minification with help from a little bit of PHP.

A useful part of minification is that during the act of compiling your minified source, you can also pull in other JavaScript files and compiled them all into one single source. This has a major advantage that there is only one file to download.

The method runs a file_get_contents on each of the javascript files, and pulls their content into a single PHP variable. This value is then just echoed out after it's passes through this minimizer class.

Kae also offers an alternative to performing this expensive operation each time - caching then checking the md5 hash of the cache to see if it's different than the current version. Example code is included.

tagged with: efficient minification filegetcontents caching javascript

Eirik Hoem's Blog:
Handy online regex tool for PHP, Perl, JS and Python
0 comments :: posted Tuesday May 06, 2008 @ 12:09:14
voice your opinion now!

Eirik Hoem has pointed out an online tool a coworker shared with him to work with regular expressions for multiple languages.

A coworker of mine has been working on a ajax enabled regex tool which lets you evaluate regex expressions in several languages (including PHP PCRE and PHP POSIX) with instant results.

The tool lets you put in the string you want to match again and the pattern you want to match with. The results are automatically populated below it, making it easy to fine-tune your expression to only what you want.

tagged with: regular expression tool online perl javascript python

PHPBuilder.com:
Developing a Ajax-driven Shopping Cart with PHP and Prototype, Part 2
0 comments :: posted Monday May 05, 2008 @ 07:58:21
voice your opinion now!

PHPBuilder.com has continued their series looking at building an Ajax-driven shopping cart with part two posted today (part one here). Last time they laid the PHP foundation for the example app, this time they add another layer - the Ajax functionality to manage the current contents of the cart.

Finally, a link to the shopping cart is provided, although you could just as easily have displayed the cart contents on the same page. For the sake of brevity I'll just show you how to integrate the add feature, and will leave the subtraction mechanism to you as an exercise.

The Ajax frontend calls a managecart.php backend file that calls addToCart and deleteFromCart based on which type of "task" is passed to it.

tagged with: shopping cart prototype tutorial ajax backend javascript

Chris Hartjes' Blog:
What's The Next PHP Stack?
0 comments :: posted Tuesday March 18, 2008 @ 10:25:42
voice your opinion now!

In a new blog post, Chris Hartjes asks what's the next stack coming up on the horizon. LAMP has been the king for so long now it's hard to think about what might be next, but he takes a stab at it:

So the next thing I've been wondering about is about what future PHP stacks will look like, at least on the open source side of things. Have we gotten to the point where this is as good as it gets?

He looks at other stacks he's been working with (like LNNP - Linux, nginx, Postgres and PHP) as well as the question of limitations. Are we limiting ourselves by relying on LAMP too much? What else is out there? Does Javascript have a permenant place in any of this? (jLAMP anyone?)

tagged with: stack lamp limitation next horizon javascript framework

Community News:
Two Wrappers for Ext JS in PHP - PHP-Ext & ExtPHP
0 comments :: posted Wednesday March 12, 2008 @ 09:38:00
voice your opinion now!

As both the Zend Developer Zone and Ajaxian point out, there's been two new projects based on the Ext JS user interface widget system adapted for PHP - PHP-Ext and ExtPHP.

PHP-Ext is an open source widget library written for PHP 4 and 5 to empower the UI Layer. It is based on Ext JS javascript widgets which provide a standard and powerful API to build Rich Internet Applications. It basically works as a convenient wrapper for the Ext JS Javascript Objects.

And from the ExtPHP site:

I needed to be the one person who would have to wrestle JavaScript when problems happened. I therefore needed a way to insulate them from the gory details, which is why I created ExtPHP. As you may have guessed from subtle hints, such as this entry's 12-feet tall header, ExtPHP creates a PHP wrapper for ExtJS.

The Ajaxian post also includes code examples for each of them, one showing form construction and the other a tabbed interface.

tagged with: phpext extphp extjs javascript wrapper library

Stoyan Stefanov's Blog:
PHP-style $GLOBALS in Javascript?
0 comments :: posted Wednesday March 12, 2008 @ 07:55:07
voice your opinion now!

In a new post to his blog today, Stoyan Stefanov has a proposal to being something PHP users are very used to - superglobals - over to Javascript.

Javascript has implied globals. When you skip the var in var a = 1; and go a = 1;, then a becomes a global variable. Some consider this an error in the language. [...] In PHP on the other hand, variables are local. [...] So how about this: adopt the $GLOBALS convention in your JavaScripts?

His example proposes the creation of a GLOBALS object you can assign properties to that can be used anywhere. This helps to keep the variables you truely want to be global contained, though it doesn't do much except provide a convention.

tagged with: superglobal global variable javascript

Job Posting:
SQLFusion Seeks Senior PHP/Javascript Software Dev (Redondo Beach, CA/Telecommute)
0 comments :: posted Thursday March 06, 2008 @ 13:44:00
voice your opinion now!
Company SQLFusion
Location Redondo Beach, CA (can Telecommute)
Title Senior PHP and Javascript Software Developer
Summary

About SQLFusion
We specialize in application development exclusively using open source technologies, with offices spread throughout the world. 1/2 of us work from home, others work in small local offices in major international capitals. We have a flat structure totally customer centric and team oriented. We love what we do and each of us is an expert in his field. Our customers and projects include small and medium business internal applications, Web 2.0 startups and Fortune 500 companies.

Job Description
The senior software developer will be working on customer's web applications and our internal open source projects using PHP and Javascript. He or she will create, maintain and improve complex database and Ajax applications for a range of clients; from Web 2.0 startup's to larger companies for accounting, invoicing, HR or B2B applications. Some work time is dedicated to R&D on SQLFusion's open source projects (Radria, hostingfusion, ofuz...).

Experience
3 years object oriented programming experience with PHP and Javacript using MySQL or PostgreSQL as a database. Experience designing and querying MySQL 5 or PostgreSQL databases using transactions. Experience consuming web services (SOAP, REST, XML-RPC),

Proficiency in client-side technologies (XHTML, JavaScript?, AJAX, CSS, XML) and experience with hand coding and tableless layouts, Practical experience in using a Javascript toolkit or library like prototype, dojo, jquery, xajax, mootools, extjs, rico. Mastery of addressing UI concerns (standards-based dev, usability, accessibility, compatibility).

Mastery of the application development cycle in a scaled, commercial environment. Ability to adhere to specs and design details, and experience writing modular, reusable, maintainable code. Strong Object Oriented design and development skills are highly desired.

Comfortable working with linux. (kde, ssh, bash command line).

Ideal candidate is a big picture thinker with attention to detail and appreciation for analysis, and is dedicated to solving problems elegantly and creatively. Excellent debugging and troubleshooting skills. Good communication skills. Ideal candidate is a developer who consistently delivers and keeps up to date on best practices/standards and programming methods.

Skills

  • Object Oriented PHP : 3 years
  • Javascript, AJAX, (X)HTML, CSS : 3 years
  • MySQL or PostgreSQL : 2 years
  • Linux : 1 year

Education
Minimum BA In technology.

Optional

  • We have a preference for candidates that have contributed to an open source project.
  • Good portfolio of user-driven applications (Web2.0),
  • Experience with Facebook or Open Social Applications,
  • Experience with iPhone Web applications

Notes

  • The position is open to telecommute and can be anywhere in the USA.
  • US Citizen or permanent resident only

http://www.sqlfusion.com/ hr@sqlfusion.com

Link More Information
tagged with: job post redondobeach ca developer javascript software


book application ajax PEAR PHP5 zendframework code releases mysql example release security cakephp conference framework zend job database package developer

All content copyright, 2008 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework