Linux.com

NewsVac: News from around the Web

  • Develop PHP apps with Picasa Web Albums 3 weeks, 4 days ago
    In this article, learn how to integrate data from the Picasa Web Albums service into a PHP application using both SimpleXML and the Zend client library. Also, meet the Picasa Web Albums Data API and see how you can use it to retrieve photos and photo metadata; add, modify and delete photos; and perform keyword searches of Picasa's user-generated content.
  • Lessons From PHP 4.4 End-of-Life Announcement 1 month, 4 weeks ago
    The developers of PHP announced last week that PHP version 4.4.9 is now available. This would not be remarkable in and of itself, except that the developers also indicated that this would be the last release of PHP 4.4.
  • PHP 4 is dead, long live PHP 4 2 months ago
    The 8th of August marked the end of life for PHP 4, which has been in stable release since May, 2000. With no further security patches to come for the technology, what options are there for those who can't or won't upgrade?
  • Getting graphic with PHP 3 months ago
    Imagine creating Web-page graphics dynamically using just code. Creating and manipulating images is yours for the doing with the power of PHP. This tutorial steps through using the GD library, showing you how to create and alter images on Web pages. It starts with the GD construct, and then builds on it to showcase graphics techniques.
  • Zend, symfony, and CakePHP cron task automation 7 months, 2 weeks ago
    A short few years ago, a common criticism about PHP was that it did not support MVC-style architectures. Today, developers can chose from many PHP frameworks. This article shows you how to integrate external tasks with PHP frameworks and create a simple task that can be called using a scheduler such as cron. You'll build the application in each framework, getting a sense for how Zend, symfony, and CakePHP handle automated tasks differently.
  • How To Create and Apply Image Filters in PHP 7 months, 2 weeks ago
    Discover how image filters work, how they can spice up your images, how to take advantage of them in PHP, and how to create custom filters that go far beyond the built-in filter effects.
  • You Used PHP to Write WHAT?! 7 months, 3 weeks ago
    PHP may be the most popular Web scripting language in the world. But despite a large collection of nails, not every tool is a hammer. So when should it be used, and when would another dynamic programming language be a better choice? We identify its strengths and weaknesses.
  • Learn Object-Oriented Programming with PHP5 with new book from Packt 8 months, 1 week ago
    Packt is pleased to announce the release of a new book titled Object-Oriented Programming with PHP5. Written by Hasin Hayder, this book will teach users to understand the core object-oriented programming concepts with PHP and to write manageable applications with ease.
  • PHP 4 is Dead—Long Live PHP 5 8 months, 2 weeks ago
    PHP 4, deployed on tens of millions of servers globally, is among the most successful languages of all time. But its run is coming to an end...or is it?
  • Free RTS: Open Source Gamer's Guide to Free Real Time Strategy Games 8 months, 2 weeks ago
    Real Time Strategy (RTS) gaming as a genre was made popular by the original Command & Conquer, Dune 2, and of course Blizzard's mega popular WarCraft & StarCraft series. Typical mouse centric game play is based on trying to balance available resources, unit management, construction, and combat. RTS games usually are at their best when played across the internet or home network against a friend, some even offer a compelling single player experience.
  • Mastering how to process text in PHP 8 months, 2 weeks ago
    In many apps, parsing parameters is a necessary evil. And nothing is better for it than PHP's regex engine. This article delves more deeply into regexes and look at a handful of advanced operators and recipes to master regular expressions in PHP.
  • PHP can slice and dice input quickly 9 months, 1 week ago
    Pattern matching is such a common chore for software that a special shorthand — regular expressions — has evolved to make light work of the task. PHP applications manage increasingly large amounts of data. Whether you need to validate form input or decompose content, this article will show you how PHP regular expressions can do the trick easily.
  • Clever Zend IDE helps you fix PHP bugs interactively 11 months ago
    Martin Streicher, the Editor in Chief of Linux Magazine writes about Squashing bugs in PHP applications with the Zend Debugger, which probes running code, allowing you to suspend execution arbitrarily, examine objects, explore the call stack, and even change the value of a variable on the fly. Also, take a look at this quick webcast on developing Rich Internet Applications powered by Zend Core to learn more about Zend Core's best features.
  • Refine and Debug PHP Applications with Syslog 11 months, 3 weeks ago
    One of the fun aspects of programming is learning about new ways to use an old tool. An old technique for exploring a running program is to place code that "displays" the current value of variables at strategic points. Find out how PHP’s syslog() can examine these values easily without interfering with the standard output of the program.
  • Improve your PHP Coding Productivity with new CodeIgniter Book 1 year, 1 month ago
    Packt is pleased to announce the release of its new book, CodeIgniter for Rapid PHP Application Development. Written by David Upton, this book will help users build a dynamic website quickly and easily using CodeIgniter's prepared code.
  • More News

Linux.com : PHP

Add a Google map to your PHP site

By Ben Martin on August 01, 2008 (9:00:00 AM)

With the GoogleMapAPI project, you can easily add a Google Map to your PHP Web site.

Read the Rest - 5 comments

Three ways to test Web form input with a CAPTCHA

By Ben Martin on April 14, 2008 (4:00:00 PM)

Many Web forms these days feature a Completely Automated Public Turing test to tell Computers and Humans Apart (CAPTCHA) as an effort to stop people from setting up computers to automatically fill in Web forms. A typical CAPTCHA is an image with some numbers and letters in it with distortion and/or background noise, and a Web form input field where you are to enter the numbers and letters from the image. This article investigates three CAPTCHA applications that you can use on a PHP Web site.

Read the Rest - 2 comments

Search file servers from the Web with libferris and PHP

By Ben Martin on January 30, 2008 (9:00:00 AM)

Libferris allows you to index and perform full text search on a number of file formats, including PDF, manual pages, and office documents. The recent availability of packages of libferris and its dependencies for Fedora, Ubuntu, and openSUSE makes it simpler to use the library to provide a file server search interface for the Web. Libferris was initially created to provide a virtual filesystem interface, similar to GnomeVFS and KDE's KIO. Over time libferris has gained sophisticated support for indexing and searching filesystems.

Read the Rest - Post Comment

Zend Studio weds Eclipse

By Peter J. Manis on January 22, 2008 (4:00:00 PM)

With today's release of Zend Studio for Eclipse, Zend has made Zend Studio, which we reviewed last year, even better.

Read the Rest - 2 comments

Quick custom text ad placement in WordPress blog categories

By Tina Gasperson on May 18, 2007 (8:00:00 AM)
WordPress plugins abound for Google AdSense and other third-party text ad brokers, but what happens when someone wants to buy ad space directly from you, on a specific category page in your blog? You can easily add static HTML text ads to your category search result pages by creating category-specific page templates.

Read the Rest - 6 comments

Continuous integration with PHP

By Chad Files on March 12, 2007 (7:00:00 AM)
Large development projects can be difficult to manage. With multiple developers committing source code to one source tree, there are going to be times when code breaks and will not work. Running automated builds and tests on code can drastically reduce the time and effort developers spend fixing issues by catching them early. This process is called continuous integration. This article provides an overview of how to implement continuous integration in a PHP project using tools written in PHP.

Read the Rest - 1 comment

Upcoming PHP release will offer Unicode support

By Bruce Byfield on February 28, 2007 (8:00:00 AM)
Andrei Zmievski is one of the leading developers of the PHP programming language. Since March 2005, he has been working with about 20 other developers to add Unicode support to version 6.0 of PHP. Now their efforts are nearing an alpha release.

Read the Rest - 12 comments

Volunteers make Vancouver PHP Conference work

By Bruce Byfield on February 15, 2007 (8:00:00 AM)
More than 225 developers attended the second Vancouver PHP Conference at the University of British Columbia's Downtown Campus in Vancouver Canada this week. Organized by the Vancouver PHP Users Group, the conference attracted many of the best-known names in the PHP world, including Rasmus Lerdorf, Andrei Zmievski, Damien Seguy, and Zak Greant. The result was a well-rounded conference that shows what an experienced group of volunteer organizers can accomplish.

Read the Rest - 1 comment

Increase PHP programming productivity with Zend Studio

By Peter J. Manis on February 06, 2007 (8:00:00 AM)
Looking for an integrated development environment (IDE) for your PHP coding? Zend Studio, which launched its latest version 5.5 in December, offers an impressive feature list that can increase the productivity of even novice programmers.

Read the Rest - 7 comments

A DIY calendar control in PHP

By Donald W. McArthur on January 24, 2007 (8:00:00 AM)
As a former ASP.Net coder, I've missed the convenience of Microsoft's built-in Calendar Control since I switched to doing Web site development in PHP. On a recent project I needed the ability to display a calendar with dates serving as hyperlinks to selected database items. I decided to use the opportunity to write some portable PHP code that I could use in other projects.

Read the Rest - 11 comments

Exploiting Amazon Web Services via PHP and SQLite

By Michael Stahnke on March 10, 2006 (8:00:00 AM)
A few weeks ago a friend asked me how my book, Pro OpenSSH, was selling on Amazon.com. I was tracking the sales by going to Amazon.com and viewing the book page to examine the sales rank. The only data displayed about history information was today's Sales Rank and Yesterday's Sales Rank, which isn't all that helpful. I decided to use PHP, SQLite, and the Amazon Web Services API to gather more useful data.

Read the Rest - 2 comments

Smarty templating and presentation library for PHP

By Eddie Tejeda on December 09, 2005 (8:00:00 AM)
PHP has historically been a simple scripting language used for quickly developing small web sites with dynamic content. But newer features have given the language the structure and libraries for building larger applications. One such library is Smarty, a templating and presentation engine. Smarty helps developers build applications in modules by separating the presentation layer from the application code. This article covers some of the basic features of Smarty for developers.

Read the Rest - 9 comments

Review: NuSphere PhpED 4.0

By Peter Lavin on November 09, 2005 (8:00:00 AM)
NuSphere's PhpED 4 is a welcome upgrade to a Windows integrated development environment (IDE) that has been around since 2000. The "Ed" in "PhpED" stands for "enterprise developer," and this product is aimed primarily at the experienced PHP developer.

Read the Rest - 2 comments

Filesystem data visualization using JPGraph

By Glenn Mullikin on March 10, 2005 (8:00:00 AM)
JPGraph is a set of programs written in PHP that plots data into a wide range of graphs and formats the results. Licensed under the Trolltech QPL License, JPGraph is now at Version 1.17. Whatever your data, JPGraph can help you to view it graphically, letting you to see relations in more clearly. Such data visualization may not be important to a computer, but, to a person, it can make a lot of difference to analysis.

Read the Rest - 5 comments

Create a data dashboard with PHP and a browser

By Rob Reilly on November 08, 2004 (8:00:00 AM)
How many times have you needed a quick and dirty method of displaying data, in a "dashboard" format, that everybody could easily view? Everybody has a Web browser, so why not use that for your dashboard? PHP and Apache make it easy. Here's how you can take a text file, evaluate the content using PHP, then display results on a browser dashboard.

Read the Rest - 11 comments

PHP 5's new look

By Daniel Rubio on October 19, 2004 (8:00:00 AM)
In July Zend Technologies announced the latest version of PHP, the widely used scripting language for Web programming. Version 5 incorporates a series of substantial enhancements over previous releases. Here's an introduction to some of the new features.

Read the Rest - 7 comments

International PHP Conference in Amsterdam

By Filip de Waard on May 13, 2004 (8:00:00 AM)
Last week I attended the International PHP Conference in Amsterdam. There was a small exhibition, but the main attraction was the large number of lectures by well-known PHP gurus. The first day was reserved for two whole-day "Power Workshops," where the audience got an elaborate introduction to either PEAR or XML processing in PHP 5. During the last two days there were almost 30 shorter sessions about various topics.

Read the Rest - Post Comment

Zend, Sun bringing PHP to the enterprise

By Chris Preimesberger on November 03, 2003 (8:00:00 AM)
Zend Technologies, parent company of the popular open source PHP Web scripting engine, today will announce a major partnership deal with Sun Microsystems in a move that may well advance PHP's position in the major leagues of e-business.

Read the Rest - 4 comments

Exploiting Amazon Web Services via PHP and SQLite

By Michael Stahnke on March 09, 2000 (8:00:00 AM)
A few weeks ago a friend asked me how my book, Pro OpenSSH, was selling on Amazon.com. I was tracking the sales by going to Amazon.com and viewing the book page to examine the sales rank. The only data displayed about history information was today's Sales Rank and Yesterday's Sales Rank, which isn't all that helpful. I decided to use PHP, SQLite, and the Amazon Web Services API to gather more useful data.

Read the Rest - 2 comments

Exploiting Amazon Web Services via PHP and SQLite

By Michael Stahnke on March 09, 2000 (8:00:00 AM)
A few weeks ago a friend asked me how my book, Pro OpenSSH, was selling on Amazon.com. I was tracking the sales by going to Amazon.com and viewing the book page to examine the sales rank. The only data displayed about history information was today's Sales Rank and Yesterday's Sales Rank, which isn't all that helpful. I decided to use PHP, SQLite, and the Amazon Web Services API to gather more useful data.

Read the Rest - 1 comment



 
Tableless layout Validate XHTML 1.0 Strict Validate CSS Powered by Xaraya