Sunday 6 November 2011

About Google

There are lots of interesting things about google, there are some easter eggs which you definitely try with google, so the first one is :-

1. Go to "google.com".
2. Type "Where is Chuck Norris".
3. Click on I'm feeling lucky.

And you will be amazed by the search result, google will respond/result a search written ...

Google won't search for Chuck Norris because it knows you don't find Chuck Norris, he finds you.


The second one 


1. Go to "google.com".
2. Type "z or r twice" ("do a barrell roll") without quotes.
3. Click on search.

You will be amazed by the result.

Ques- How google chrome invented?
Answer -  Google chrome logo is the idea borrowed from Microsoft , the following image will clear it.



So thats it.

Tuesday 1 November 2011

Magic Square (Code PHP)

Hello Friends, in my previous post i discussed about the logic for Magic Square. In this post i am posting the code for Magic Square. Save the code in a file named code.php and upload it on your server and see the result. It will definitely work ;) Good luck

Code :-


@author - Aksshay
<html>
<head>
<title>
Magic Square
</title>
</head>
<body>
<!-- Take input from the user and
create the magic square of that dimesion --!>

<form action="code.php" method="GET">
<br />
Enter the dimension for magic square (2-9) :-
<br />
<input type="text" value="3" name="dime" />
<br />
<input type="submit" value="GO" />
</form>
</body>
</html>

<?php

// Magic square
// @ Author : aksshay


if(isset($_GET['dime']))
{
$dime = $_GET['dime'];
$number_of_elements = $dime * $dime;
$values = 1;

for ($row = 0; $row < $dime ; $row++)
    for ($column = 0; $column < $dime; $column++)
        $array_a[$row][$column] = $values++;
       
$middle = $dime/2;
$middle = ceil($middle) - 1;

for ($column = 0; $column<$dime; $column++)
    $array_b[$middle][$column] = $column+1;
   
$temp_b = $middle-1;

while($temp_b >= 0)
{
   
    for ($column = 0; $column < $dime; $column++)
    {
       
        if ((($array_b[$temp_b+1][$column])-1) != 0)
             $array_b[$temp_b][$column] = $array_b[$temp_b+1][$column]-1;
        else
             $array_b[$temp_b][$column] = $dime;   
                   
        }
       
    $temp_b--;
}
   
$temp_b = $middle+1;   
while($temp_b < $dime)
{
   
    for ($column = 0; $column < $dime;$column++)
    {
        if ((($array_b[$temp_b-1][$column])+1) <= $dime)
        $array_b[$temp_b][$column] = $array_b[$temp_b-1][$column]+1;
        else
        {
            $array_b[$temp_b][$column] = $array_b[$temp_b-1][$column]+ 1 - $dime;
                    }
       
        }
       
    $temp_b++;
}

$swape = $dime-1;
for ($row = 0; $row < $dime ; $row++)
{
    for ($column = 0; $column < $dime; $column++)
    {
        $array_c[$row][$column] = $array_b[$swape][$column];
}
$swape--;
}

for ($row = 0; $row < $dime ; $row++)
    for ($column = 0; $column < $dime; $column++)
    {   $row_element = $array_b[$row][$column]-1;
        $column_element = $array_c[$row][$column]-1;
        $magic_square[$row][$column] = $array_a[$row_element][$column_element];
     }
  
?>

<table align="center" width="500" height="100" cellpadding="2" cellspacing="2" bordercolorlight="#159C18">
<?
for ($row = 0; $row < $dime ; $row++)
{
    echo "<tr>";
    for ($column = 0; $column < $dime; $column++)
        echo  "<td>".$magic_square[$row][$column]."\t"."</td>";
    echo "</tr>";
        }
       
        ?>
        <br />
        </table>
        <?php
       
    
}

else
{
echo "Dimensions aren't set";
}
?>

Thanks.