What is web design?

Web design is a technology by which we can execute electronic media content via Internet which is suitable for interpretation and display by a web browser or other web-based graphical user interfaces (GUIs).

The goal of web design is to create a web site (a collection of electronic files residing on web servers) that presents content (including interactive features or interfaces) to the end user in the form of web pages once requested.

 
Posted by rangu on May 10, 2008 in Website Design    Comments (0)

Create Bar Chart Using GD library

Graph Image

Copy and paste this code in your php file
$graphValues=array(50,80,23,11,190,120,50,80,111,210,55);
$graphValues_city=array(’mumbai’,'delhi’,'channai’,'banglore’,'chandigarh’,’surat’,'kanpur’,'patna’,'hyderabad’,'jammu’,'lacknow’);
header(”Content-type: image/png”);
$imgWidth=1000;
$imgHeight=280;
// Create image and define colors
$image=imagecreate($imgWidth, $imgHeight);
$colorWhite=imagecolorallocate($image, 255, 255, 255);
$colorGrey=imagecolorallocate($image, 192, 192, 192);
$colorBlue=imagecolorallocate($image, 0, 0, 255);
// Create border around image
imageline($image, 0, 0, 0, 250, $colorGrey);
imageline($image, 0, 249, 1000, 249, $colorGrey);
for ($i=0; $i<11; $i++)
{
 imagefilledrectangle($image, ($i*80)+10, (250-$graphValues[$i])+1, (($i+1)*80)-20, 248, $colorBlue);
 imagefttext( $image, 10, 0, ($i*80)+strlen($graphValues_city[$i]),270, $colorGrey, ‘trebuc.ttf’, $graphValues_city[$i], array(’lineheight’=>2.0) );
 imagefttext( $image, 10, 0, ($i*80)+20,244-$graphValues[$i], $colorGrey, ‘trebuc.ttf’, $graphValues[$i], array(’lineheight’=>2.0) );
}
imagepng($image);
imagedestroy($image);
 //imagefilledrectangle($image, $i*25, (250-$graphValues[$i]), ($i+1)*25, 250, $colorBlue);
 //imagefilledrectangle($image, ($i*50)-10, (250-$graphValues[$i])+1, (($i+1)*50)-5, 248, $colorBlue);
?>

 
Posted by rangu on April 19, 2008 in Content Management System, Open Source - PHP    Comments (0)

What is CakePHP?

CakePHP is a open source framework which is used for rapid application development for PHP. It is free. 
Features 

  • Compatible with PHP4 and PHP5.
  • Integrated CRUD for database and simplified queries
  • Model View Controller (MVC) Architecture
  • Request dispatcher with custom URLs
  • Built-in Validation
  • Fast and flexible templating (PHP syntax, with helpers)
  • View Helpers for AJAX, Javascript, HTML Forms and more
  • Security, Session, and Request Handling Components
  • Flexible access control lists
  • Data Sanitization
  • Flexible View Caching
  • Works from any web site subdirectory, with little to no Apache configuration involved

More Details

 
Posted by hemant on April 4, 2008 in Open Source - PHP    Comments (0)

PHP : What can PHP do?

There are three main fields where PHP scripts are used.

  • Server-side scripting. You can access the PHP program output with a web browser, viewing the PHP page through the server.
  • Command line scripting. You can make a PHP script to run it without any server or browser. You only need the PHP parser to use it this way. This type of usage is ideal for scripts regularly executed using cron (Linux) or Task Scheduler (on Windows). These scripts can also be used for simple text processing tasks.
  • Writing client-side GUI : We can also write GUI application by using PHP.
 
Posted by mukesh on March 27, 2008 in Miscellaneous    Comments (0)

Browser compatibility

Filed under: CSS Stylesheets, HTML / XHTML

A couple of browser compatibility issues. As almost every web designer knows, how a browser renders a page is very dependent on which browser is doing the rendering.

Here’s a couple of tips to use when trying to get a web page to render the same across most browsers (IE, Firefox and Opera).

Do NOT use <br clear=”all”>

IE does not render this at all. It’s better to use <div style=”clear:both”> which works across most browsers.

Specify CSS definition “margin-top” for lists

The default margin-top for lists differs between the main browsers. IE’s default margin-top is zero. Firefox and Opera has a default margin-top of about 1 em.

It’s best to always specify a margin-top in CSS when using lists.

 
Posted by mukesh on February 22, 2008 in Miscellaneous    Comments (0)

The future of the web: What to Expect in 2008

Hi Friends
Please visit follwoing URL  to know upcomming developments in website design and website developement.
http://www.sitepoint.com/article/future-of-the-web-2008

 
Posted by hemant on January 12, 2008 in General    Comments (0)

Google new chart API

A new API from Google that generates information charts in a dynamic way. its usage is quite straightforward: you link to an image in the form of a parameterized URL, such as http://chart.apis.google.com/chart?cht=p3&chd=t:90,49&chs=400×200&chl=data|bling.

“cht=p3? is the chart type, in this case, a pie chart.

“chd=t:90,49? are the chart values, text-encoded, and separated by a comma.

“chs=400×200? is the custom chart size, 400 by 200 pixels.

“chl=Data|Bling” are the different labels for the pie chart sections, separated via the pipe character.

chart types include: line charts, bar charts, pie charts, Venn diagrams & scatterplots.

View Demo

 
Posted by raghwendra on December 20, 2007 in About google    Comments (1)

Raghwendra.com

Welcome to all of you on the raghwendra.com blog. 

 
Posted by admin on in General    Comments (1)
 
About us | Website Design | Website Development | Open source | Ecommerce
Get in touch
New Delhi. +91-93124-47399
 
SEARCH  GO
 
 
CATEGORIES
» About google (1)
» Content Management System (1)
» General (2)
» Miscellaneous (2)
» Open Source - PHP (2)
» Website Design (1)
TAG CLOUD
CMS Open Source web design Web development Website Design Website Development
RECENT UPDATES
» What is web design?
» Create Bar Chart Using GD library
» What is CakePHP?
» PHP : What can PHP do?
» Browser compatibility
Archives
» May 2008
» April 2008
» March 2008
» February 2008
» January 2008
» December 2007
raghwendra home
raghwendra blog home
 
 
website design by raghwendra