Thursday, February 17, 2011

Internet Explorer 9 is now released.








Internet Explorer 9 Release Candidate (RC) is now released.


Download

Wednesday, February 9, 2011

Top Search Engine you can submit your website

In our previous discussion I have tell you the importance of seo in website developing, as I said it is process of making your website in rank to the search engine. Even if you submit already your website. It is still take time to crawl it and have an index.


Google - Add your URL to Google. Just enter the url of your website
     submit url






Yahoo! - Submit site using the yahoo site explorer
     submit url










Bing - submit your url to Bing to be crawl by BingBot
     submit url 




SEO guide, SEO tool and tips

SEO, Search Engine Optimization is called in making your website to have a high page rank and be easily search by the browser using a good keyword. There is many way in making your website easy to search. There are more website that are using an advertisement. It is important also that you to pass your link to the top search engine the most people visit.

I will give you an idea on how we can increase your website visits and be easily seen in search engines.

Top Search Engine you can submit your website

SEO tools you can use to optimize your website in search engines

Tuesday, February 8, 2011

jQuery Tooltip

Tooltip is a simple text or image that displaying when you roll over to a content to display a quick description about your content. In this part, I will list a different jQuery tooltip that is useful and also added some design points to your website.Different tooltip that using jQuery framework.



Tipsy - Facebook-style tooltip plugin for jQuery









jQuery Tools Tooltip  -  a tool tip with different effect,. toggle, fade and slide.














Coda Popup Bubbles - tooltip with the combiantion of jQuery and css.















Tiptip jQuery Plugin - a very lightweight and intelligent custom tooltip jQuery plugin.
It uses ZERO images and is completely customizable via CSS.











Easiest Tooltip and Image Preview Using jQuery - What this script does is adds an element to the body when you roll over a certain object.

















jQuery AJAX Tooltip - a tool tip thta using the ajax function to gather the data from the server.


















Help Baloon - a tool tip that acts like a help description pop up.



















Digg-style post sharing tool with jQuery -











Prototip allows you to easily create both simple and complex tooltips using the Prototype javascript framework.



Thursday, February 3, 2011

JQuery Slider

In this section, I will provide a different JQuery slider for your site gallery or for your content management. A JQuery slider with different transition and setting that will suit for your website.





Coin Slider - A slider with different and smooth transitions.













loopSlider - A slider with smooth fade effect.

















Nivo Slider - A JQuery slider with different transitions. With differenct setting where you can create a caption for the image, a thumbnail for selecting image.
 










jqFancyTransitions - slideshow with strip effects. An easy-to-use jQuery plugin for displaying your photos as slideshow with fancy transition effects.
















jQuery Blinds - a jQuery slides with smooth transitions. Also build to have different transition effects.












Multiple Image Cross Fade - simple but good slider for displaying image.With displaying caption over the image for the description of the slide.



















Rotating Billboard System - creating the effect of a rotating billboard with two ads. The idea is to make one set of image slices disappear while another one (the other ad) appear.















Animate Panning Sideshow with JQuery - slideshow that transitions by changing the visible window.
















Create Featured Content Slider Using jQuery UI - a content a slider with capable of displaying content to describe each image that you presented to the website





Wednesday, February 2, 2011

Web Browsers for web development

In creating a site, the best you can do is to check it all in browser that most users used. It is important because some script(css and javascript) is not working. That was called the web browser compatibility issue. We can use a script for the compatibility, like checking first the browser the version and then select the script inside that. I listed below the browsers that mostly used by the user. 

1. Firefox - It has a tab for. multiple site you want to visit. It cn detached to another window and also you can bring it back again as a one window. It has a Add-ons that you can use for developing a site. The web developer tool, where you can use to check the css and javascript errors. It also have checking your cookie javascript  and   css settings.

       Latest version: Firefox 3.6.16 for windows. Download
       Beta version: Firefox 4 for windows. Download

2. Google Chrome -Like firefox, it also have a tab to to attached and detached. But I think it is faster and not getting to memory usage when browsing.

      Latest version: Download
      Beta version:  For Windows XP, Vista, and .  Download


3. Internet Explorer - Tabbing is also available but it is only in one window.A special browser made for windows os. More users have difficulties when using this for the compatibilities. I think that is the used of the
setting there for called 'IE Compatibility'.

     Latest Version:
Internet Explorer 9. Download

4. Safari - Almost the same function as firefox and google chrome in terms of tabbing. For windows os you can used this for checking the if your site is compatible with the browser of mac os, but is is not actual like in the Mac OS.

    Latest Version: 5.0.3 for windows. Download
                            Mac OS X. Download

4. Opera - For tabbing, the same as the 3 browsers above. The user interface was like combination of Google chrome and safari.

          Latest Version: 11.01 for windows. Download
                                  11.01 for Mac OS X. Download

PHP Server for local computer

You can practice your php scripting locally using some software that can handle php MySql, phpMyAdmin and Apache. These software is important because you can't run your own php script in just running it in the browser. And also they provided you a database here that you can used for some data project.

http://www.apachefriends.org/en/xampp.html
http://www.easyphp.org
http://www.wampserver.com

Tuesday, February 1, 2011

PHP Editors

 I always use Adobe Dreamweaver for editing my php scripts but I can give you some of php editor you can used.

Cross Platform

  • ActiveState Komodo Edit - Live PHP syntax checking, (s)ftp support, functions list and code hints
  • Bluefish - Supports any protocol that is supported by GnomeVFS. (SSH...)
  • Eclipse - PHPEclipse and PHP Development Tools projects. With additional plugins supports SVN, CVS, Database modelling, SSH/FTP access, Database Navigation, Trac integration, and others.
  • Emacs - Advanced text editor. The nXhtml addon has special support for PHP (and other template languages).
  • Geany - Syntax highlighting for HTML + PHP. Provides PHP function list.
  • jEdit - Versatile Free/Open source editor. Supports SFTP and FTP.
  • Netbeans IDE - A dedicated PHP coding environment and complete integration with web standards. Supports SFTP and FTP.
  • Vim - provides PHP syntax highlighting.
  • SciTE - fast, PHP syntax highlighting, compiler integration, powerful config via Lua API:LUA

Windows

Linux

Mac OS X

Commercial editors


 Source: List of PHP editors - Wikipedia, the free encyclopedia
 

Thursday, January 27, 2011

PHP Tutorial - Beginner

What is PHP?
        PHP, which stands for Hypertext Preprocessor. It's a server side scripting language that you can use to generate any HTML web pages dynamically.Using this server side script you can actually control over your website depends on your need. PHP is also the extension using this document. You need to install a web server, Apache and a database, MySQL. PHP always start with a tag '<?php' and always end with '?>' or '<?' and always ended with '?>'.

PHP Sample
<html>
<head>
<title>PHP Tutorial</title>
</head>
<body>


<?php echo 'PHP Tutorial!'; ?>


</body>
</html>

Save as sample.php


The codes above simply display the text 'PHP Tutorial!' in a website.The echo function simply display the string inside its parameter.