Generate editable text box that is saved with AJAX

Ajax, PHP, PHP Scripts, Techniques
This class might be utilized to produce a content box that gets editable when the client twofold clicks on the content. It shows the content to be altered inside a DIV tag that is displaced by a content info when the client twofold clicks on the DIV. The point when the content data looses the center, the altered content is submitted to the server to be spared without reloading the page utilizing AJAX. Download Files
Read More

How to Customize the WordPress admin bar?

CMS, PHP Scripts, Tutorials, Web Design & Programming, WordPress
In WordPress 3.3 version there is a handy admin bar that provides quick access to some Admin features for logged in users. There are several ways to do customize it by creating functions. Here I will show, how you can customize the admin bar the way you want. WorPress adds a black menu bar (Admin Bar or Toolbar) at the top of the screen when user is logged in. This menu bar is also visible even when you are at the front end of the site and provide you a quick links of pages quickly. WordPress allows us to customize the this bar and it’s possible to add new links (menu items) in that bar or remove or change the existing ones. Using admin_bar_menu or wp_before_admin_bar_render hook we can customize…
Read More

Trigger an AJAX request upon an HTML page event

Ajax, PHP, PHP Scripts
This is a very simple class that generates HTML attributes to handle events on page elements using AJAX requests. It generates Javascript code that calls a simple Javascript library that performs an AJAX request and uses the request response to update the contents of a given page element. The AJAX request URL, request method, and the page element to be update are configurable. The code and documentation is available in English and Spanish. Download Files
Read More

Generate HTML and Javascript for displaying forms

PHP, PHP Scripts
This class might be utilized to create Html and Javascript for showing shapes. This undertaking advertises quick advancement of shapes through an item arranged Php structure, kills the grunt/repetitive work of composing the html and javascript approval when building shapes, decreases human slip by utilizing a consistent/tested utility, and consolidate complex components, for example ajax, jquery, google maps, tooltips, captcha, and html web editors rapidly and with small endeavor. There are 15 illustration records that give numerous executions of the class and will give you a head begin in your advancement. Additionally, there are presently 3 Youtube films that give a progressively in-profundity look different bits of the task. Download Files
Read More

Select friends on Facebook (Facebook Custom Friends Selector)

Ajax, Blog, PHP Scripts
This class might be utilized create a requisition that could be utilized to select companions on Facebook. It creates the essential Html, Css and Javascript to presentation a record of companions of the present Facebook client. The client can pick which companions he needs to select then afterward the companions record is submitted to a given Url utilizing Ajax to abstain from reloading the entire page. Download Files Here
Read More

13 in a dozen db class

Databases, PHP, PHP Scripts
Access MySQL servers and display queries in tables This class could be utilized to gain entrance to Mysql database servers and show question brings about Html tables. It can create database associations with a given Mysql host, recover server database qualified information, execute Sql questions, recover the embedded identifier by the final Insert question, get the amount of effected lines by an inquiry, get the amount of returned lines by an inquiry, get the amount of sections in a question effect set, recover question come about columns into shows or objects. The class can additionally create Html tables to presentation inquiry result information or metadata about the question consequence sections.  
Read More

Digg Style Follow Unfollow PHP, jQuery and CSS

Ajax, Databases, PHP Scripts, Tutorials
You know Digg has altered its style and layout and now I suppose it looks wonderful. This time on vivacity, I make Digg Style follow/unfollow provision. Which I tried to make same as unique Digg look. Numerous clients like my facebook style excercises So this is a proceeds arrangement ofdigg style excercises. I trust You will like it. I have utilized client Ip to check emulated or unfollowed. Anyhow you can do this in your needed way. If its not too much trouble offer this assuming that you such as and dont neglect to subscribe via message. DATABASE STRUCTURE CREATE TABLE IF NOT EXISTS `digg_follow` ( `id` int(11) NOT NULL AUTO_INCREMENT, `fullname` varchar(120) NOT NULL, `username` varchar(80) NOT NULL, `image` varchar(100) NOT NULL, `bio` text NOT NULL, PRIMARY KEY (`id`)…
Read More

Load Infinite Data while Scrolling Page Down in jQuery, AJAX ,PHP AND MYSQL

Ajax, Databases, PHP Scripts
This excercise about my top choice put Dzone like information stacking while page scrolling down with jquery and Php. We have heaps of information however can't show all. This script encourages you to showcase small information and make quicker your site. Investigate live demo and span down. Database Table CREATE TABLE messages( mes_id INT PRIMARY KEY AUTO_INCREMENT, msg TEXT); Browser Capability : Safari, Firefox, IE, Chrome load_data.php When we are scrolling down a webpage, the script($(window).scroll) finds that you are at the bottom and calls the last_msg_funtion(). Take a look at $.post("") eg:$.post("load_data.php?action=get&last_msg_id=35") <?php include('config.php'); $last_msg_id=$_GET['last_msg_id']; $action=$_GET['action']; if($action <> "get") { ?> http://jquery.js $(document).ready(function() { function last_msg_funtion() { var ID=$(".message_box:last").attr("id"); $('div#last_msg_loader').html(''); $.post("load_data.php?action=get&last_msg_id="+ID, function(data){ if (data != "") { $(".message_box:last").after(data); } $('div#last_msg_loader').empty(); }); }; $(window).scroll(function(){ if ($(window).scrollTop() == $(document).height() - $(window).height()){…
Read More