Display month calendars browseable using AJAX

Ajax, Tutorials
This class could be utilized to showcase month datebooks browseable utilizing Ajax. It can produce Html and Javascript to showcase a month datebook with connections to scan the months utilizing Ajax to dodge page reloading. The class can make given days be shown as connections to occasion pages. The scanning may be confined to given dates. The months and week day names are customizable. The presentation portions may be redone utilizing Css. Download All Files
Read More

Compress your HTML code using PHP

Software Development, Techniques, Tips
When we write code we love to format it nicely adding tabs, line breaks and indentations, but the end user isn’t interested in how lovely the source code is, they just want the page content, so this script strips out all the line breaks and spaces in your code and puts it on one line, compressing your code and making it faster. <?php // start output buffer ob_start('compress_html'); ?> <!-- all xhtml content here --> <?php // end output buffer and echo the page content ob_end_flush(); // this function gets rid of tabs, line breaks, and white space function compress_html($compress) { $i = array('/>[^S ]+/s','/[^S ]+</s','/(s)+/s'); $ii = array('>','<','1'); return preg_replace($i, $ii, $compress); } ?>
Read More

Use PHP to Gzip CSS files

PHP, Techniques, Tips
Minimising the time a client needs to sit tight for a site page to load is significant. Utilizing Gzip and Php we can minimise document sizes of Css records. This method is a compelling and basic path to lessen page download examine and speed your webpage that will work with generally Php establishments, even those on imparted hosting that don’t have mod_deflate turned on in their Apache setup. Just add the code below at the top of your page. You then need to change the links to point to your CSS files. if(extension_loaded('zlib')){ ob_start('ob_gzhandler'); } header ("content-type: text/css; charset: UTF-8"); header ("cache-control: must-revalidate"); $offset = 60 * 60; $expire = "expires: " . gmdate ("D, d M Y H:i:s", time() + $offset) . " GMT"; header ($expire); ob_start("compress"); function compress($buffer)…
Read More

What is a Responsive Design?

Software Development, Tips, Web Design & Programming
A website that can be easily viewed and used in all types of devices or in other words "A Website That Can Responds to Various Screen Sizes". Responsive web design(Rwd) is a web outline approach pointed at making destinations to give an optimal survey experience—simple perusing and route with at least resizing, panning, and scrolling—over an extensive variety of apparatuses (from desktop Pc screens to versatile phones). A site outlined with Rwd acclimates the layout to the survey environment by utilizing liquid, extent based grids, adaptable images, and Css3 media queries, an amplification of the @media rule. The liquid lattice notion calls for page component measuring to be in relative units like rates, instead of supreme units like pixels or points. Adaptable pictures are additionally measured in relative units, to anticipate…
Read More

Utilizing web thumbs to improve client experience

Techniques, Tips, Tutorials
In the course of recent years I've had the chance to finalize a couple of individual ventures. This permitted me to trial progressively with methods that I wouldn't have ordinarily utilized on customer locales. Throughout this time I was assembling a blogging stage, I soon discovered that it was challenging to display the information and make it look fascinating to the client, this is where i uncovered web thumbnails to accomplish this. There are an assortment of web thumbnail benefits out there however the best and most effortless to use far and away is shrinktheweb.com Using the Shrinktheweb.com Pro Features Specific Page Captures – “inside pages” Full Length Captures Custom Sized Captures Refresh On-Demand – queued instantly Custom System Messages – private label with your own system message thumbnails Native…
Read More

Key web development skills

Mobile Applications, Techniques, Tips
Api Knowledge A crux instrument for any maturing web designer is Api information. It's great to acquaint yourself with a mixed bag of provision interfaces. I began utilizing the Twitter Rest Api with Php and Curl when twitter initially started the Api to fundamentally get a clients tweets, pretty modest now I think back, yet around then it was the first occasion when i'd done such a marvel as this. As the improvement of social media proceeds this will in an ever widening margin open up chances to improve more requisitions that interface with each one in turn and make our every day errands more astounding. Frameworks There's usually a system for practically each modifying dialect out there. If you choose to study the jquery schema for Javascript or Cake…
Read More

HOVER SLIDE EFFECT with jQuery

Ajax, Tutorials, Web Design & Programming
This jquery excercise will show how to make a picture territory with a few pictures that slides out when you drift over them, demonstrating different pictures. Arbitrary sliding impact add to its delightfulness, by arbitrary sliding impact I implies the pictures will slide to the top or base, left or right, becoming dull or not. At the time we click on any region, all regions will slide their pictures out. [caption id="attachment_409" align="alignnone" width="585"] Hover Slider Effect[/caption] For the HTML structure we will create a div element with the class and id “hs_container”. Inside we will place the different image areas with all possible images. The first image will have the class “hs_visible” which will make it being displayed on the top of all other images: Download Files
Read More