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

Got Project on mind? Let's ConnectContact Us

Secured By miniOrange