Compose a MVC Paradigm for PHP with Symfony

Compose a MVC Paradigm for PHP with SymfonyBookmark on del.icio.us
Compose a MVC Paradigm for PHP with Symfony As you probably know, Model-View-Controller (MVC) is a programming technique that Wikipedia defines as: “an architectural pattern used in software engineering. The pattern isolates ‘domain logic’ (the application logic for the user) from input and presentation (GUI), permitting independent development, testing and maintenance of each.” If you...

Read More...

The Top Five PHP Content Management System

The Top Five PHP Content Management SystemBookmark on del.icio.us
The Top Five PHP Content Management System With solutions such as The Zend Framework and CodeIgniter making it easier than ever to create complex web applications, it can be tempting to flex your developer muscles and create custom framework-based solutions whenever the opportunity arises. However, the PHP community has also made great strides with another type...

Read More...

Five Fabulous PHP Frameworks

Five Fabulous PHP FrameworksBookmark on del.icio.us
Five Fabulous PHP Frameworks Highlight any portion you want: var...

Read More...

AJAX Multiple File Upload Form Using jQuery

AJAX Multiple File Upload Form Using jQueryBookmark on del.icio.us
AJAX Multiple File Upload Form Using jQuery AJAX Multiple File Upload using jQuery Multiple file upload forms are sometimes essential for your web application but managing upload from multiple file input boxes becomes a bit tedious and lengthy. But thanks to jQuery using which we can make this task easier too. Today I’m going to...

Read More...

How to implement a news ticker with jQuery and ten lines of code

How to implement a news ticker with jQuery and ten lines of codeBookmark on del.icio.us
How to implement a news ticker with jQuery and ten lines of codeAfter my previous posts about how to implement a news ticker with MooTools I received a lot of emails from my readers that asked to me to implement a similar feature with jQuery, including fade in and fade out effects, in the simpler...

Read More...

Create Realtime Chart Without Page Refresh using FusionCharts Free and Ajax (prototype.js)

Create Realtime Chart Without Page Refresh using FusionCharts Free and Ajax (prototype.js)Bookmark on del.icio.us
Create Realtime Chart Without Page Refresh using FusionCharts Free and Ajax (prototype.js)We receive a request from our reader to create simple realtime chart update but without page refresh. Fortunately there are many solutions to do this, but now we will cover using a nice flash charting component called FusionCharts. FusionCharts comes with several edition, but...

Read More...

New jQuery Plugin – ImageSwitch, amazing effect with simple code

New jQuery Plugin – ImageSwitch, amazing effect with simple codeBookmark on del.icio.us
New jQuery Plugin – ImageSwitch, amazing effect with simple codejQuery Plugin – ImageSwitch It’s a while from the last time I updated my blog. I spend all spare time to make a new jQuery plugin – ImageSwitch and this is one of the most favorite plug-ins. The main point of this plug-in is to make an...

Read More...

Fancy Thumbnail Hover Effect w/ jQuery

Fancy Thumbnail Hover Effect w/ jQueryBookmark on del.icio.us
Fancy Thumbnail Hover Effect w/ jQueryRecently I was checking out some nice flash galleries and came across an effect that I really liked. I had a sudden urge to duplicate that similar effect but using my bread and butter (CSS and jQuery). I thought I’d share this and maybe some of you can find it...

Read More...

JQuery FontEffect plugin

JQuery FontEffect pluginBookmark on del.icio.us
JQuery FontEffect pluginFont effect is a jQuery plugin that add some effect to html text. The available effects are (for now) Outline, Shadow, Gradient and Mirror, here is an example: Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example Example XJAVASCRIPT$(’#example24′).FontEffect({<br> outline:true,<br> outlineColor1:”#00c”,<br> outlineColor2:”#00c”,<br> outlineWeight:1,<br> shadow:true,<br> shadowColor:”#ccf”,<br> ...

Read More...

jQuery Effects

jQuery EffectsBookmark on del.icio.us
jQuery Effects The jQuery library provides several techniques for adding animation to a web page. These include simple, standard animations that are frequently used, and the ability to craft sophisticated custom effects. In this chapter, we’ll closely examine each of the effect methods, revealing all of the mechanisms jQuery has for providing visual feedback to the...

Read More...

How to Convert a WordPress Blog into WordPress MU

How to Convert a WordPress Blog into WordPress MUBookmark on del.icio.us
How to Convert a WordPress Blog into WordPress MU If you’ve been using your WordPress installation in a single-user fashion and have been looking to get more people in on the fun, you’ll probably want to update to the WPMU edition of the popular blogging engine. It’s not the easiest thing to accomplish, so the WordPress...

Read More...

24 E-commerce development tips

24 E-commerce development tipsBookmark on del.icio.us
24 E-commerce development tipsThis is part of my ever-growing list of tips for developers building e-commerce sites. I cover a lot of territory in one list, so be gentle folks. 1. Use SSL only within your cart. There’s a hell of a lot of debate around this. But one fact is clear: SSL page requests require...

Read More...

Magento: How to get all active payment modules

Magento: How to get all active payment modulesBookmark on del.icio.us
Magento: How to get all active payment modules This code bellow will get you all active Magento payment modules. This example below return an array which you can use to create drop down menu or something else in Magento’s front-end or admin sections. class Inchoo_Vendor_Model_Activpayment { public function getActivPaymentMethods() { $payments = Mage::getSingleton('payment/config')->getActiveMethods(); $methods = array(array('value'=>'',...

Read More...

Magento 1.4 great new features

Magento 1.4 great new featuresBookmark on del.icio.us
Magento 1.4 great new features Among a lot of new improvements to Magento introduced with the 1.4 version there are some new features that stand out in terms of content management, system performance and also some user enhancing functionalities. We all heard about the widgets and content WYSIWYG features added to Magento 1.4 but these improvements add...

Read More...

15 Open Source eCommerce Platforms

15 Open Source eCommerce PlatformsBookmark on del.icio.us
15 Open Source eCommerce Platforms Whether you’re about to open your first online shop or you’re considering changing the ecommerce platform you’re currently using, you’ll find all the information you need below. We take a look at the 15 most popular eCommerce platforms, breaking each one down into its respective pros and cons. There is a...

Read More...

23 Wordpress E-commerce Plugins To Set Up Online Store

23 Wordpress E-commerce Plugins To Set Up Online StoreBookmark on del.icio.us
23 Wordpress E-commerce Plugins To Set Up Online StoreIn the last few years Wordpress improves itself  so much and every day and maybe every hour new plugins are being released for Wordpress.When Wordpress was first released it was hard to imagine to use wordpress platform as a shopping platform or selling anything from the blog...

Read More...

30 AJAX Tutorials For Smart Web Developers

30 AJAX Tutorials For Smart Web DevelopersBookmark on del.icio.us
30 AJAX Tutorials For Smart Web DevelopersHere is a complete package of AJAX Tutorials Web Developer, Ajax is a short form Synchronous JavaScript and XML is a set of methods that are used by many modern and popular web sites. Ajax providing web developers with verbosity options, the practice of searching to improve and expand...

Read More...

AJAX Upload – File Upload

AJAX Upload – File UploadBookmark on del.icio.us
AJAX Upload – File UploadBrowsers force us to use file inputs (<input type=”file” />) for uploads, which are impossible to style. Moreover, form-based uploads look obsolete in modern web applications. We can use flash to solve this problem, but JavaScript works nice too. AJAX Upload allows you to easily upload multiple files without refreshing the page...

Read More...

20 New examples of advanced jQuery UI’s in action.

20 New examples of advanced jQuery UI’s in action.Bookmark on del.icio.us
20 New examples of advanced jQuery UI’s in action.jQuery has been one of the most widely adopted javascript frameworks for some time with the recent release of and as a result of this developers have been able to let their imagination run wild when it comes to designing exciting new interfaces. In this post I’m sharing...

Read More...

Update: A New & Improved jQuery Script to Automatically Preload images from CSSUpdate: A New & Improved jQuery Script to Automatically Preload images from CSS

Update: A New & Improved jQuery Script to Automatically Preload images from CSSUpdate: A New & Improved jQuery Script to Automatically Preload images from CSSBookmark on del.icio.us
Update: A New & Improved jQuery Script to Automatically Preload images from CSSUpdate: A New & Improved jQuery Script to Automatically Preload images from CSSWhen we first launched the lab, we released a jQuery plugin that automatically preloads all images referenced in CSS files. We’ve found the script to be incredibly helpful in developing snappy...

Read More...

Broken Link Checker for WordPress

Broken Link Checker for WordPressBookmark on del.icio.us
Broken Link Checker for WordPressSometimes, links get broken. A page is deleted, a subdirectory forgotten, a site moved to a different domain. Most likely many of your blog posts contain links. It is almost inevitable that over time some of them will lead to a “404 Not Found” error page. Obviously you don’t want your...

Read More...

Scripts — Javascript Cookie Script

Scripts — Javascript Cookie ScriptBookmark on del.icio.us
Scripts — Javascript Cookie ScriptHere’s a basic Javascript cookie script, it’s from the public domain one, unfortunately we can’t remember it’s source, if anyone knows it, we’ll add that to the script header. This code is provided as is, but has been tested extensively over the years, and should work quite well for you. If...

Read More...

Scripts — Full Featured PHP Browser Detection & OS Detection

Scripts — Full Featured PHP Browser Detection & OS DetectionBookmark on del.icio.us
Scripts — Full Featured PHP Browser Detection & OS DetectionFull Featured Javascript Browser detection script Simple Javascript Browser detection script Full Featured PHP browser and OS detection script Light Featured PHP browser detection script Simple PHP browser detection script Our PHP browser detection scripts are all tested on every browser we have access to: Opera, Mozilla (and other Gecko engine...

Read More...

Animated Drop Down Menu with jQuery and CSS

Animated Drop Down Menu with jQuery and CSSBookmark on del.icio.us
Animated Drop Down Menu with jQuery and CSSAnimated Drop Down Menu – Learn how to create a great looking drop down menu with a slick effect using jQuery and CSS. Definitely useful and very easy to implement drop-down site navigation. Drop down menus are a really convient way to fit a large menu into a really...

Read More...

Unobtrusive Multilevel Dropdown menu with CSS and jQuery

Unobtrusive Multilevel Dropdown menu with CSS and jQueryBookmark on del.icio.us
Unobtrusive Multilevel Dropdown menu with CSS and jQueryMultilevel Dropdown CSS menu – Learn how to build a multilevel dropdown menu with CSS and then improve it with jQuery.  It’s totally unobtrusive – even if javascript is disabled you’ll still be able to use this menu. Highlight any portion you want: var...

Read More...
Use a Highlighter on this page