Tuesday, July 5, 2011

Outsourcing Best Resources For India

At Profit by Outsourcing Most of Our Business comes from Volume Clients/Partners these are Primarily Web Design and Web Development Companies based in North America, Europe, & Australia and we have more than 50 such relationships across the Globe. Each project is taken up as an important web development assignment and each client is given top priority. Be it a multinational or a private customer, Quality is the key without compromising on costs and in this process we strive to create value to businesses. If you are looking for a Website Development Company, you have landed at the right place.
if(!strlen(trim($error))){
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$msg1="".$your_name."";
$msg1.="".$mobile."";
$msg1.="".$address."";
$msg1.="".$city."";
$msg1.="".$country."";
$msg1.="".$email."";
$msg1.="".$message."";

Web Design and Web Development

Web Design and Web Development portfolio boasts of several well known brands and companies. Development Kanpur invites you to look at our case studies section to understand what value we bring to the table and projects we have executed for clients across the India and world. These organizations have chosen Full stop for our unique mix of industry standard best practices, quality, and cost efficiency. Our Web Design and Development Center in Kanpur has an extensive team of qualified professionals and our project management and sales locations in Delhi helps in close interaction with clients.

PHP as Personal Home Pages

Hypertext Pre-processor "PHP" was created by Rasmus Lerdorf in 1995. Rasmus Lerdorf is called PHP as Personal Home Pages it also called general-purpose scripting language is use for basically Development of dynamic website pages.
php
/*$imagecon=imagecreate(200,200);
$imageconcolor=imagecolorallocate($imagecon,0,193,224);
$imagedrcol=imagecolorallocate($imagecon,225,0,0);
imageellipse($imagecon,200,300,100,150,$imagedrcol);
imagearc($imagecon,100,100,100,150,0,90,$imagedrcol);
$mypoints=array(20,20,185,55,70,80);
imagepolygon ($imagecon,$mypoints,3,$imagedrcol);*/

$imagecon=imagecreatefromjpeg("vlogo.jpg");
//$imagecir=imagecreatefromjpeg("s.jpg");
//$white=imagecolorexact($imagecir,255,255,255);
//imagecolortransparent($imagecir,$white);
$deswidth=imagesx($imagecon);
$desheight=imagesy($imagecon);

$srcwidth=intval($deswidth/100);
$srcheight=intval($desheight/200);

$imagethumb=imagecreatetruecolor($srcwidth,$srcheight);
imagecopyresampled($imagethumb,$imagecon,0,0,0,0,$srcwidth,$srcheight,$deswidth,$desheight);

/*$desx=($deswidth-$srcwidth)/2;
$desy=($desheight-$srcheight)/2;imagecopy($imagecon,$imagecir,1000,500,10,0,$srcwidth,$srcheight);*/

header("Content-type:image/jpeg");
header("Content-type:image/gif");
imagejpeg($imagecon);
imagedestroy($imagecon);
?>