Catégorie mutt - posté le 01/06/10 22:55:42
Catégorie blender - posté le 27/05/10 22:07:47
Catégorie web - posté le 19/05/10 22:45:21
@font-face {
font-family: 'Cantarell';
font-style: normal;
font-weight: normal;
src: local('Cantarell'), url('http://themes.googleusercontent.com/font?kit=tGao7ZPoloM xQHxq-2oxNA') format('truetype');
}Catégorie blender - posté le 11/05/10 22:39:14
Catégorie configuration - posté le 20/04/10 19:54:41

Catégorie boulot - posté le 12/03/10 18:37:12
Catégorie web - posté le 05/02/10 16:28:15
Catégorie web - posté le 28/12/09 10:20:24
Catégorie php - posté le 15/12/09 17:45:48
<?php
include("class.php-excel-xml.php");
$doc= new Excel(9); // nombre de colonnnes du document
$doc->add_title("My Title");
// Open table with sub title
$doc->open_container("sub title");
$doc->add_header(Array("first", "second", "third"));
for($i=0;$i<10;$i++)
{
$doc->add_line(Array(rand(1,10), rand(1,10), rand(1,10)));
}
$doc->close_container();
// Open table without subtitle
$doc->add_header(Array("first", "second", "third"));
for($i=0;$i<10;$i++)
{
$doc->add_line(Array(rand(1,10), rand(1,10), rand(1,10)));
}
echo $doc->output();
?>