 | News Feed |
 | Jobs Feed |
Sections
|
| feed this: |  |
Zend: Zend Reveals What Music Will Keep Developers Productive (and Happy) This Holiday
by Chris Cornutt December 21, 2011 @ 10:06:59
In a new press release to their site, Zend teases at some of the results from their Zend Developer Pulse survey. In these results, they share what music developers prefer (according to the survey) for when they're developing.
The survey showed that as much as 86% of developers listen to music while coding. Of the major music genres, 42% of developers said they prefer coding to music of the rock/pop variety.
The results also included the top artists, some "guilty pleasure" choices and some of the least popular artists. The full results of this survey will be coming out in January 2012, giving a "developer perspective" on the current state of the industry, technology in general and their career.
voice your opinion now!
music survey developer productive opinion like dislike
DevShed: The LIKE Clause and the Active Record Pattern
by Chris Cornutt March 24, 2009 @ 12:07:39
DevShed continues their look at the Active Record pattern with the next part of their seven part series - extending their MySQL class even further.
In its current incarnation, this class's functionality is limited, regardless of its decent level of SQL abstraction. Therefore, in this fourth part of the series I'm going to enhance it by making it capable of working with LIKE clauses in a straightforward way.
They look at using LIKE to match values in various columns of the tables and add in a fetchLike method that lets you specify the column to search, the pattern to match on and the table to search in.
voice your opinion now!
like clause tutorial activerecord pattern designpattern fetchlike
WebReference.com: How to Create a Search Feature with PHP and MySQL
by Chris Cornutt August 07, 2008 @ 07:53:10
On WebReference.com today Ryan Butler has written up a tutorial of a simple search feature that can be integrated into any site (with their content in a MySQL database).
In this article, you'll learn how to create a searchable form feature that will query a database table and display current staff member information. During the analysis you'll learn how to do the following: create a database table that will hold current staff listings, create a search form and use PHP, in coordination with Structured Query Language (SQL) to capture information entered by the visitor and append the information to display the results we want to show.
They give you the files for the project and work through each, showing how to make the database, put information in and connect to the database to run the query. He opts for the LIKE functionality in the WHERE clause to find the term as a wildcard in the FirstName field. It's not the most efficient, but it can be useful.
voice your opinion now!
mysql search engine like wildcard tutorial
roScripts.com: PHP search engine
by Chris Cornutt March 30, 2007 @ 09:55:00
The roScripts website has a new tutorial that anyone just starting out to create a search engine with PHP and MySQL should get their hands...er eyes on. It steps through the creation of a simple PHP-based search engine, showing multiple methods to achieve the goal.
The right search engine on your website won't bring you more traffic but it will help your visitors to better locate things so it will keep them on your pages. A good search engine implemented can increase your hits with almost 30% and this is tested. I'm not talking just to have a tutorial.
The different methods the show how to implement include:
- using a straight LIKE on each word entered
- paring down those results using ORs on other columns too
- implementing the Porter Stemmer algorithm
- finding matches that contain the term but not only one part of it
- Full-text searches
It's a good overview of some of the basic steps to getting your own search up and running, but some of them, when applied to sites with larger amounts of data behind them, wouldn't be useful at all (slowness mainly).
voice your opinion now!
searchengine like fulltext match porterstemmer searchengine like fulltext match porterstemmer
Wolfgang Drews' Blog: Some thoughts on indexes & searching in MySQL / PHP
by Chris Cornutt June 05, 2006 @ 06:03:05
Giving your users a tool to find relevant invormation from the vast ocean that is the content of your site isn't easy sometimes. Even with the powerful combination of PHP and MySQL, it can be difficult to find what you're looking for. Wolfgang Drews shares in some of this frustration in his new blog post.
Using MySQL most of you will be familiar with this: searching in textfields for keywords is quite uncomfortable when using other table handler then MyISAM. If you use MyISAM, you can utilise the Fulltext-Search with MATCH … AGAINST. Otherwise you are thrown back to "simple" string comparison functions (LIKE). Not really satisfying. As this won't change with the 5.1er Version of MySQL, i have to search for another solution.
His other suggestions include the use of two other tables (terms in one, references back to content in another) or an external search option, such as the Zend Framework's implementation of the lucene functionality - Zend_Search.
voice your opinion now!
search mysql fulltext like lucene zend framework search mysql fulltext like lucene zend framework
Bitstorm.org: What I don't like about PHP
by Chris Cornutt May 26, 2006 @ 06:06:36
According to the reasons listed here, PHP isn't good for much more than just the smallish, more personal sites. It was originally written back in 2004, but has just been recently updated (April 2006) with a more current state of PHP.
I have been developing in PHP for six years now. PHP is very easy to program in. But PHP also has some serious flaws. Below I give some reasons why you have to do some serious thinking before implementing a large scale web application in PHP.
Some of the reasons they give include:
- Many PHP-modules are not thread safe
- Non-standard date format characters
- No Unicode
It's interesting to see how many of these reasons seem to be more of a preference than a real standard, and the "crippled for commercial reasons" comments are very interesting. Also, several of these will be addressed in the next version of PHP, version 6.
voice your opinion now!
opinion don\'t like reasons small site large scale opinion don\'t like reasons small site large scale
|
Community Events
Don't see your event here? Let us know!
|