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

Show pagination links for MySQL query results

Databases, PHP
This class could be utilized to show pagination connects for Mysql inquiry results. It can take a given Mysql question and check the aggregate number of the outcomes so it can verify the Limit statement parameters to inquiry and show the present inquiry results page range. The class can likewise create route connections to skim the different pages of the inquiry effects. Download Files
Read More

Split MySQL query results in multiple pages

Databases, PHP
This is a modest class that might be utilized to part Mysql question brings about different pages. It takes as parameters a Sql question and the breaking point of records to show for every page. The class can execute the question recovering just the lines that are for the present page. It can likewise create connections to peruse the pages on which the question effects are shown. Download Files
Read More

Facebook Style Event Creator Ajax ,PHP AND MYSQL CURL

Ajax, Databases, Tips, Tutorials
A different Facebook style excercise for you with jquery and Ajax. Facebook occasion maker is utilized for making occasions on facebook. So in the wake of including some breathtaking excercises facebook I have now made facebook style occasion inventor for you. This is marvelous bit of script. Trust you will like it. Database CREATE TABLE IF NOT EXISTS `facebook_event` ( `id` int(11) NOT NULL AUTO_INCREMENT, `EventInput` varchar(255) NOT NULL, `datepicker` int(11) NOT NULL, `where_text` varchar(255) NOT NULL, `WhoInvited` varchar(255) NOT NULL, `users_ip` varchar(200) NOT NULL, `date_created` int(11) NOT NULL, PRIMARY KEY (`id`) ) JQUERY CODE // Download Source Code
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

Comment system with jQuery, PHP AND MYSQL

Ajax, Databases, PHP, Techniques
This time we are set to improve Comment framework without invigorating page with jquery, Ajax and Php. In this requisition we had actualized with gravatarimage. It's is helpful and basic just a few lines of code. Examine the live demo impact. javascript code. http://jquery.js $(function() { $(".submit").click(function() { var name = $("#name").val(); var email = $("#email").val(); var comment = $("#comment").val(); var dataString = 'name='+ name + '&email=' + email + '&comment=' + comment; if(name=='' || email=='' || comment=='') { alert('Please Give Valid Details'); } else { $("#flash").show(); $("#flash").fadeIn(400).html('Loading Comment...'); $.ajax({ type: "POST", url: "commentajax.php", data: dataString, cache: false, success: function(html){ $("ol#update").append(html); $("ol#update li:last").fadeIn("slow"); $("#flash").hide(); } }); }return false; }); }); C omment.php Contains HTML code here class timeline li{display:none} <ol id="update" class="timeline"> </ol> Name Email commentajax.php Contains PHP and HTML…
Read More