Wednesday, February 29, 2012

New Front Cover to Srudent Progressive System...

Here is the original image of the Student progressive system. By using few changes, The texture color can take into another image entirely.



The problem is that, the user can change the color of image partially. to get the whole effects to the image, the gradient tool or require to apply any other filter to selected area of image.

But Here we used the texture graphics using blending option, the designer can mix the color deeply into image  or using brush mode, the designer can show the color effects inside the image with magic.

The front banner of the Students progressive system will display the following images. the images would be integrated like looking over broken window or glass in appearance. But simply I have used the blending option of the first image, so we can highlight the background image as screen shadow.

Sunday, February 26, 2012

Ideal Event for Private Forum

Here is a great idea to accomplish with other peoples in outside of the world. It is club. The club may begin with different kind of ideas and needs of them. But we can make sure that the students of the any institute can implement the various of the activities.

The logo of the any club is the main symbol of their identification by the other people who are observing you from anywhere. So I have simple effects to develop the logo for the IT club in my side to keep their identification from others.

I have used few photoshop tools for creating this logo and can be used according to company color to group with them. The version of the Photoshop is CS3 and used some gradient, selection, text and brush tools with blending options for the text.

Tuesday, February 7, 2012

Database class has been Modified in PHP

class Database
{
public $con;
//by default the system will identify them with var keyword.
var $db;
//these variables you can call any number of times with class objects.
var $die;

function set_db()
//the function will be started here.
{
//make connection to be available for script.
$this->con = mysql_connect("localhost","root","");
if (!$this->con)
  {
  die('Could not connect: ' . mysql_error());
  }
//introduce the db to script.
$this->db = mysql_select_db("idm1", $this->con);

}

function get_db()
//start function to pass results to script.
{
return $this->con;
return $this->db;
}

function close_con()
//provide the close feature to be used by script.
{
$this->die = mysql_close($this->con);
return $this->die();
}
//end of class.
}

Without no argument, The database class will be implemented here to provide the infrastructure for any no of php script.