Top stories for php

Buzz | Video | Top stories | My News


added 2008 Fri May 16 11:29:09 by bloid
For years, many people have argued that one of PHP’s big successes is deployment. The language has little to recommend it for anything beyond simple database-backed HTML templating, but there’s little easier than dropping a couple of .php files in a directory through FTP.
added 2008 Wed May 14 15:29:17 by bloid
Arriving with the NetBeans 6.1 release last week was the NetBeans IDE Early Access for PHP. This provides a complete PHP integrated development environment hosted in NetBeans, re-using the infrastructure NetBeans has already employed for Java and Ruby. Having walked through the main NetBeans IDE, I thought it worth looking inside the PHP update to see what it offers one of today's most popular languages.
added 2008 Wed May 14 14:42:04 by bloid
Currently, over on Slashdot, there is an article on forthcoming features in PHP version 6. And, like most PHP articles, the comments section is flooded with jackasses arguing that PHP sucks as a language. I get frustrated by the entire "PHP sucks" campaign, largely because it's like the HTML e-mail argument - mostly driven by the fact that it's stylish to hate them - but I'm going to go further. I argue than everyone posting about how PHP is a bad language as a whole is an idiot. Every single one. Each is a foolish, arrogant, nerd sheep who can't think for themselves.
added 2008 Wed May 14 13:33:07 by musher
A simple method for monitoring or logging memory usage in you PHP applications using the declare construct.
added 2008 Wed May 14 10:14:29 by Sunny Walia
This post explains how to export records for individual tables into CSV files using built in mysql functionality.
added 2008 Wed May 14 0:57:00 by roshanbh
There are many server varables are avaiable in PHP but some of them are very useful. Here are some of the very useful server variables avaiable in PHP.
added 2008 Tue May 13 20:29:39 by codediesel
How to add heatmaps for your webpages the easy way. No database required.
added 2008 Tue May 13 17:17:35 by paul_houle
Languages that support multiline quotes such as C#, Perl and PHP make it easy for developers to embed SQL code in applications in a readable and maintainable way
added 2008 Mon May 12 11:00:15 by c0de
A tool to reformat your php code and make it more readable

Sponsors

More tags

Linux Programming Security Software unix-linux ajax how-to javascript java tools .net trends frameworks books research gui web design ruby open source reviews web 2.0 eclipse other languages perl python humor announcement News Microsoft Windows usability database standards rss c-and-cpp server education free web services web development article programacion css web web20 rails code rubyonrails gallery images mysql digg webdesign blogs blog home download games reference development flash tips blogging website web2.0 howto library tutorial performance opensource open-source webdev wordpress IBM webservices tutorials scripts learning identity xml opinion forum ebooks cms SQL framework best css-html methodology dev learn apache cakephp educational openid webtools pear mvc php5 bestoftheweb

more tags »

 
added 2008 Mon May 12 9:03:24 by Stefan Koopmanschap
You'd never think a guy could write so much about a blog application but to date after 6 parts we have covered a mass of detail from initial setup of our project's directory structure to Authentication of users. To date the feedback has been overwhelmingly positive to this series and I'm presently collecting comments regarding improvements for later inclusion. Today's entry concerns authorisation. We previously covered how to authenticate an author to the blog, but we still have nothing ensuring only authenticated authors can access the new Administration Module. This is the domain of Zend_Acl, an implementation of an Access Control List system which limits access to resources by the roles assigned to a user.
added 2008 Mon May 12 2:08:13 by Stefan Koopmanschap
I'm currently working about equally in PHP and Java. I can't say I've fallen in love with Java. But Java does have a feature or two that would be useful in PHP. One of them is the Enum (enumeration, that is), which is traditional in some languages and DBMSes (including MySQL) and was introduced in Java 1.5 (or is that 5.0? I'm sure they do that just to expose people like me as Java amateurs).
added 2008 Sun May 11 0:09:51 by raphael76
Charles Nutter, a Sun engineer who has worked on the JRuby project, commented on PHP in a panel discussion at Sun's CommunityOne conference. I will not join the "PHP vs. Ruby on Rails" "discussion" here, as the comparison of a programming language to a web application framework for another language does not make sense, IMHO. Instead, I would like to comment on two of Charles Nutter's points.
added 2008 Sat May 10 15:44:25 by codediesel
Which is the most popular version of PHP today and will release of PHP 6 increase the adoption of PHP 5.
added 2008 Fri May 9 19:53:55 by Stefan Koopmanschap
Against all odds, I found myself with a little spare time this week. Rather than do something sensible like clean the garage or get some exercise, I took the opportunity to learn a new programming language: Python.
added 2008 Fri May 9 7:06:02 by roshanbh
This tutorial explains how to add various animated effect to content navigation using jquery.
added 2008 Thu May 8 20:43:34 by Steelrat
Many Open Source content management systems written in PHP want to be recongnized by the business industry as being "enterprise" ready. This is not only a mark of prestige and status but places them in a position where large companies are ready to invest in the software as a platform for their projects. Drupal is now trying making its move to be enterprise ready but has a long way to go.
added 2008 Thu May 8 19:53:08 by Volume4
PHP's next edition, V6, includes new features and syntax improvements that will make it easier to use from an object-oriented standpoint. Other important features, such as Unicode support in many of the core functions, mean that PHP V6 is positioned for better international support and robustness. PHP is already popular, used in millions of domains (according to Netcraft), supported by most ISPs and used by household-name Web companies like Yahoo! The upcoming versions of PHP aim to add to this success by introducing new features that make PHP more usable in some cases and more secure in others. Are you ready for PHP V6? If you were upgrading tomorrow, would your scripts execute just fine or would you have work to do? This article focuses on the changes for PHP V6 — some of them back-ported to versions PHP V5.x — that could require some tweaks to your current scripts. If you're not using PHP yet and have been thinking about it, take a look at its latest features. These features, from Unicode to core support for XML, make it even easier for you to write feature-filled PHP applications.
added 2008 Thu May 8 14:16:25 by diagnostix
We've all encountered it before, and we've all asked this question in one way or another. I see it appearing in Yahoo Answers every now and then, and I see it varients of this technology comparison in blogs I read. Its clear this issue is still quite relevant today and will continue to be tomorrow.
added 2008 Wed May 7 4:06:05 by Stefan Koopmanschap
While working at some really old code that provided a fulltext search feature, I was at one point rather unsatisfied due to the fact that said code resisted all attempts to debug it. This lead to the decision to sit down on a rainy weekend to try if I couldn't come up with something more useful, and most importantly, scalable. After about three hours of trial and error with Zend_Service_REST and Zend_Search_Lucene, I came up with a working prototype of a service-oriented fulltext index.
added 2008 Tue May 6 11:32:27 by bloid
Everybody who writes object-oriented code knows about constructors. You need them so the program knows how to instantiate objects, right? And you especially need them when a lot of things have to be done while instantiating an object. And personally, I've never considered visibility restrictions important enough to be a major argument against those languages that have lacked them (PHP 4). So why would I be skeptical of public constructors?
added 2008 Tue May 6 7:20:18 by bloid
PHP is the latest language getting the NetBeans treatment, with a PHP version of Sun Microsystems' open-source environment hitting early access today.
added 2008 Tue May 6 1:55:02 by bloid
This comprehensive guide discusses where to get, how to install, and how to use the various cryptography packages available to enhance the security of your PHP applications.
added 2008 Mon May 5 21:30:42 by diagnostix
Finally, I found some time to take CakePHP for a spin. I've heard some really good things about it, and I've been trying to get some time to try it out. I installed the framework and went through the tutorial on building a simple blog application. I have to say I'm quite impressed.
added 2008 Mon May 5 11:15:32 by bloid
Every major website seems to have a tag cloud. Users love tag clouds; they help navigate masses of content quickly and easily. When used appropriately, they help us sort filter through information stores, reduce the signal-to-noise ratio. Providing a tag cloud is also relatively painless for the server - after all, it’s just some HTML. But how do we actually build a tag cloud at application level? In this tutorial, I’ll take you through putting together a full-blown, calculated web 2.0 tag cloud in PHP.
added 2008 Sat May 3 16:00:12 by slayerizer
Security Enhancements and Fixes in PHP 5.2.6: * Over 120 bug fixes. * Fixed possible stack buffer overflow in the FastCGI SAPI identified by Andrei Nigmatulin. * Fixed integer overflow in printf() identified by Maksymilian Aciemowicz. * Fixed security issue detailed in CVE-2008-0599 identified by Ryan Permeh. * Fixed a safe_mode bypass in cURL identified by Maksymilian Arciemowicz. * Properly address incomplete multibyte chars inside escapeshellcmd() identified by Stefan Esser. * Upgraded bundled PCRE to version 7.6
added 2008 Fri May 2 19:08:18 by bloid
You've tried your hand at building mashups, experimented with a few RESTful Web services, maybe even started your own. Sure, you've got data sharing working. But how do you make your Web applications really talk to each other? In this tutorial, I'll show you how to take your Web applications to the next level with SOAP, the "powerhouse of Web services", building high-end Web services with pure PHP.
added 2008 Fri May 2 13:13:16 by Stefan Koopmanschap
Sometimes I’ve seen people say PHP is a bad first language, because it teaches bad programming habits. But is this actually true at all? Often those who say that don’t really like PHP themselves either, many times because of equally untrue reasons. I think PHP is a perfectly good first programming language - I would even go as far as say it’s possibly the ideal first language if you are interested in web development.
added 2008 Fri May 2 11:10:40 by bloid
The first part of this article reviewed some relevant open-source Web applications in both the PHP and Java worlds. The conclusion was that there are massively popular PHP projects and somewhat popular if not obscure Java counterparts. I'm a Java fan and it pains me to discover this reality. The user comments also underlined this feeling.
added 2008 Thu May 1 18:54:23 by limitedwarranty
Everybody is expecting lots of traffic. Thats the trend of last weeks posts anyway, there were at least 7 articles on the subject. It is one of my favorite topics, unfortunately I never have enough traffic to see any of them actually solve a problem for me.
added 2008 Thu May 1 16:29:57 by lifewithryan
My first grails application went live today. (Sorry I can't show it to you), but I thought I'd take the time to compare this experience with my other experiences with PHP and traditional Java.


12345678910111213 ... 41 »