Skip or Hide PHP errors / warnings

Errors are hints from compiler for the programmer to correct. But sometimes we face some unwanted or dynamic error. For example, $content = file_get_contents(http://www.twitter.com/feed/234); Here , the url is invalid, or the server of the url is down , PHP shows Warning: Failed to open stream or file access is disabled. Use @ in front [...]

1 Comments

Carousels with jQuery

jCarousel is a simple jQuery plugin to create continuous sliding effect.  I like the way they created the plugin. http://sorgalla.com/jcarousel/ jCarousel uses both javascript array and structured html  for inputing data. The data can be modified with html using post callback functions. For example, you can show flicker images using jCarousel by importing the images [...]

1 Comments , , , , , , ,

Quick Favicon

Some days back I got a new website from my friend Lee to generate favicon for website. Here is the url : http://www.convertico.com/ Thanks Sajith Share

1 Comments , , , ,

jQtouch – amazing jQuery for iPhone

I think, i am becoming jQuery fan day by day. If you have an iPhone or iPod Touch or iPad, try this url in your browser: http://sajithmr.me/jqtouch/demos/main/ You will wonder for some minutes. Yes, it is not a application, it is a website and every action is created by our dearest jQuery using jQTouch library [...]

0 Comments , , , , , , , ,

Flexigrid

In most of the project, we need to write a lot of queries to create admin backend. Especially for report generation.  In old days I used phpTables. But recently I started using Flexigrid, a jQuery plugin for displaying tables. It is very simple to write code and all work in Ajax Here is the url: [...]

1 Comments

Uploadify – A php-flash library to make upload simple

Here is a simple jQuery plugin for creating flash based file uploader. http://www.uploadify.com/ Look some demo here. Include the js file and run the following script to make a file input to flash uploader <script type="text/javascript">// <![CDATA[ $(document).ready(function() { $('#fileInput').uploadify({ 'uploader'  : 'uploadify.swf', 'script'    : 'uploadify.php', 'cancelImg' : 'cancel.png', 'auto'      : true, 'folder'    : '/uploads' [...]

1 Comments