Useful SEO web site.

Posted on Wednesday, 26 September 2012 by contact-nizam

Google AdWords- used for SEO meta keywords

Posted on by contact-nizam


https://adwords.google.com/o/Targeting/Explorer?__c=1000000000&__u=1000000000&ideaRequestType=KEYWORD_IDEAS


In Title meta tag - 95 word count with spaces
keyword tag - 1000 characters or 45 words
Description tag - 50 - 200 characters or 25 words

How to use your own cursor on your website

Posted on Monday, 24 September 2012 by contact-nizam

<body style="curcor: url('cursor.ani')">

Reference:
Click here

TextField get Focus and clear content.

Posted on by contact-nizam

<html>
<head>
<title>Clear Form Demo</title>

<script language="javascript">
<!--
function ClearForm() {
  document.testform.password.value= "";

//After focus the password should appear like ****** so include this below code 
//document.testform.password.type="password";
}

//-->
</script>

</head>

<body>

<form name="testform">
    <input type="text" name="password" value="Something here." onfocus="ClearForm();">
</form>
</body>
</html>
       



Reference:
Click here

Adding videos to web pages using Adobe Dreamweaver CS3.

Posted on by contact-nizam


Seriously, all you need to get into the video game is a FLV and the ability to click a mouse. Here's how:
  1. Open Dreamweaver 8 and create a new page.
  2. Click the mouse and select Insert > Media > Flash Video...

    When you release the mouse the Insert Flash Video dialog box opens. This is where the process of adding a video to your Dreamweaver 8 page starts.

    Select the Video Type pop-down menu.
  3. This is your first decision: Is the video to be streamed from your web site or through a Flash Communication Server or a Flash Video Streaming Service? Your choice will actually change the look of the dialog box because a Streaming Video requires either an RTMP address and an instance name for the video. If you don't have a Flash Comm or FVSS account choose the Progressive Download option.
    A Progressive Download isn't as bad as it seems when you first encounter the term. The video usually starts playing after a second or two of the video loading into the Player. This takes slightly more time than the other option which starts playing immediately.
  4. After you select Progressive Download click the Browse button and navigate, using the Select File dialog box, to the location of the FLV file you want to include in the page.

    Your next decision will contain an extremely pleasant surprise if you are familiar with the Video Kit.
  5. Click the Skin pop down and select a skin. 
  6. If you used the Video Kit, the first thing you will notice is there are now 9 styles to choose from. Just keep in mind each skin has a minimum video width associated with it. As you can se in the image below, each skin contains specific features ranging from simple Start/Stop buttons to volume controls. What is even more interesting is these skins can be customized. The process of doing this is well beyond the scope of this article because it is rather complex. Still, the ability to add you client's logo to the player is available.


    Having chosen the skin, you really don't have much more to do. Click the Detect Size button and the video's dimensions are pulled from the FLV's metadata and applied to the size of the player.


    Finally you have to decide whether or not to select the "Auto play" and "Auto rewind" buttons. Selecting them, when you have controls seems a bit redundant but, if you want the movie to start playing as soon as it loads, select "Auto play".
    The last choice is whether you want your visitors to obtain the latest copy of the Flash Player which, as of this writing, is Flash Player 8. Selecting this adds a detection script to your page and, if the user doesn't have the Flash 8 Player, he or she is redirected. This step is both optional and customizable. Deselect it and the detection script isn't added. If you do select it, you can either use the message or add one of your own such as, "You don't have the stuff. How about we go get it." or something like that.
    Save the page and press F12 to see the video.
    When you click OK to close the Flash Video dialog box, two swf files — one is the player and the other is the skin — are added to the directory where you saved the page. They must be uploaded to the server for the video to play properly.
    Finally, can you change your mind — switch the skin or the FLV, or change and of the settings after you create the player? The answer is yes. The video will appear on your page as a gray box with a FLV icon in the middle. Click the video and the Property inspector will change to reflect the values in the Flash Video dialog box.

    The Flash Video feature of Dreamweaver 8 is a solid hit on Macromedia's part. It is both feature-laden and simple to use. If you can make a menu selection and click a mouse, you too can add Flash video to your Dreamweaver 8 pages.
    Approximate download size: 4MB

CREATE A FACEBOOK-LIKE AJAX IMAGE GALLERY!

Posted on by contact-nizam

Disable Right Click on Web page...

Posted on Friday, 21 September 2012 by contact-nizam

Best Coding website.

Posted on by contact-nizam

http://www.sourcecodeonline.com


Icon in HTML pages.

Posted on by contact-nizam


Insert below code just after <head> tag:

<link type="image/ico" rel="icon" href="image/favicon.ico"></link>
<link rel="shortcut icon" href="image/favicon.ico" type="image/ico"></link>




Creating a progress animation for loading SWF and image files

Posted on by contact-nizam

Disable right click in html.

Posted on by contact-nizam


Insert below code between <head></head> tags


<SCRIPT language=JavaScript> <!-- http://www.spacegun.co.uk --> var message = "function disabled"; function rtclickcheck(keyp){ if (navigator.appName == "Netscape" && keyp.which == 3){ alert(message); return false; } if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) { alert(message); return false; } } document.onmousedown = rtclickcheck; </SCRIPT>

Display PDF file in HTML page

Posted on Thursday, 20 September 2012 by contact-nizam


  • 1: Save the PDF you wish to link to on a local drive on your computer.
  • 2: Upload the PDF to your Web host. How this is done depends on your host. If you have any problems, check your host's FAQ or customer service. Take note of the path of the file.
  • 3: Type the following code to cause the PDF to display in a new window:
    <a target=\"_blank\" href=\"filename.pdf\" title=\"\">Text that appears to the user</a>
    If you do not wish the PDF to open in another window, then type:
    <a href=\"filename.pdf\" title=>Text that appears to the user</a>
    For "filename.pdf" substitute the filename and path of your PDF on the Web host, relative to the current HTML page. Include the quotes. For "Text that appears to the user," substitute the text you want to appear highlighted and clickable.
  • Click here to read more

    Change image on mouse over in html.

    Posted on Tuesday, 18 September 2012 by contact-nizam


    <a href="/home">
    <img src="image1.jpg" onmouseover="this.src='image2.jpg'"
    onmouseout="this.src="image1.jpg'"/></a>








    How to connect and access SQL Database server from Android app??

    Posted on Monday, 10 September 2012 by contact-nizam


    Recently I have tried to connect to SQL Database server which is in my local network machine. I can connect and access SQL server from my Android app. I did it in the following way….
    1. First of all you need a JDBC driver library for SQL Server. As we know android library has only SQLite database driver. So first download an open source JDBC driver from this http://jtds.sourceforge.net/ site (I downloaded the Linux version).
    2. Then import the jar file into your Android app.(jtds-1.2.5.jar).
    3. Now just try this code by modifying according to your context

    import java.sql.DriverManager;
    import java.sql.Connection;
    import java.sql.ResultSet;
    import java.sql.Statement;
    import net.sourceforge.jtds.jdbc.*;
    public void query2()
    {
    Log.i(&quot;Android&quot;,&quot; MySQL Connect Example.&quot;);
    Connection conn = null;
    try {
    String driver = &quot;net.sourceforge.jtds.jdbc.Driver&quot;;
    Class.forName(driver).newInstance();
    //test = com.microsoft.sqlserver.jdbc.SQLServerDriver.class;
    String connString = &quot;jdbc:jtds:sqlserver://server_ip_address :1433/DBNAME;encrypt=fasle;user=xxxxxxxxx;password=xxxxxxxx;instance=SQLEXPRESS;&quot;;
    String username = &quot;xxxxxx&quot;;
    String password = &quot;xxxxxxxxxx&quot;;
    conn = DriverManager.getConnection(connString,username,password);
    Log.w(&quot;Connection&quot;,&quot;open&quot;);
    Statement stmt = conn.createStatement();
    ResultSet reset = stmt.executeQuery(&quot;select * from TableName&quot;);
    //Print the data to the console
    while(reset.next()){
    Log.w(&quot;Data:&quot;,reset.getString(3));
    //              Log.w(&quot;Data&quot;,reset.getString(2));
    }
    conn.close();
    } catch (Exception e)
    {
    Log.w(&quot;Error connection&quot;,&quot;&quot; + e.getMessage());
    }
    }
    4. You will find more about parameter passing here in connection string  http://jtds.sourceforge.net/doc.html .


    Desktop/Android/HTML5 Java game development framework

    Posted on Sunday, 9 September 2012 by contact-nizam

    Android game development:
    Link

    Steps involved in developing Android Game

    Posted on by contact-nizam

    Below link provides how to start developing Android Game.
    Steps included in developing Android Game.............

    Click here to start developing!!!!

    Click here for other sites!!!

    Important link!!!

    and

    Click here too..





    Registration Page with MD5 Encryption Using PHP/MySQL

    Posted on Thursday, 6 September 2012 by contact-nizam

    Hi friends, i have provided the link below where you can find the registration form which is developed using PHP with MD5 Encryption..


    Click here to download!