Re: this table in html how

2010-03-07 Thread Thierry Chatelet
On Sunday 07 March 2010 19:02:13 Thierry Chatelet wrote:
> On Sunday 07 March 2010 12:26:01 Adrian Levi wrote:
> > On 7 March 2010 21:19, Thierry Chatelet  wrote:
> >
> > I get to correct you back :-)
> 
> Yes!!
> 
> > If your going to specify cols then the percentages need to match ;-)
> >
> > Adrian
> 
> This will be better (using php):
> Choice of the number of rows
> Choice of the percentage
> 
> To improve:
> Need to get ride of the first row
> 

Also need better check on the values inputed.
Thierry


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201003071904.41516.tchate...@free.fr



Re: this table in html how

2010-03-07 Thread Thierry Chatelet
On Sunday 07 March 2010 12:26:01 Adrian Levi wrote:
> On 7 March 2010 21:19, Thierry Chatelet  wrote:
> 
> I get to correct you back :-)

Yes!!

> If your going to specify cols then the percentages need to match ;-)
> 
> Adrian
> 

This will be better (using php):
Choice of the number of rows
Choice of the percentage

To improve:
Need to get ride of the first row

Safe under table.php

http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";>
http://www.w3.org/1999/xhtml"; xml:lang="fr" lang="fr">




Percentage table



body {
  background-color: #1BFFBB; /* (grille grise et blanche) */
  margin: 0px 0px; /* Donner plus de marge à gauche et à droite, et moins en 
haut et en bas */
  font-family: sans-serif; /* Police moderne, sans empattements, du type Times 
New Roman */
}

table /* Le tableau en lui-même */
{
   margin: auto; /* Centre le tableau */
   border: 0px; /* Bordure du tableau avec effet 3D (outset) */
   border-collapse: collapse; /* Colle les bordures entre elles */
}

td /* Les cellules normales */
{
   border: 1px solid black;
   text-align: center; /* Tous les textes des cellules seront centrés*/
/*   padding: 5px; /* Petite marge intérieure aux cellules pour éviter que le 
texte touche les bordures */
}







';

//-Post TableWidth and Number of Rows -//
if (!isset($TableWidth)) {
echo 'Tablewidth in pixel: ';
echo 'Number of rows: ';
echo '';
}

//-Post number of cells per row ---//
if (isset($TableWidth) AND !isset($NbrCellRow[1])) {
echo '';
echo '';
for ($i=1; $i < $NbrRow+1; $i++) {
echo 'Number of cells for row '.$i.': ';
echo '';
}
echo '';
}

//-Post value of each cell -//
if (isset ($_POST['Next2'])) {
echo '';
echo '';
for ($i=1; $i < $NbrRow+1; $i++) {
echo '';
echo 'Values for row '.$i.':';
for ($j=1; $j < $NbrCellRow[$i]+1; $j++) {
echo 'Value for cell '.$j.': ';
echo ' 
%';
}
}
echo '';

}

//  Show Table /
if ($ShowTable== True) {
echo '';
echo '';
for ($i=0; $i <100; $i++) {
echo '';}
echo '';
for ($i=1; $i< $NbrRow+1; $i++) {
echo '';
for ($j=1; $j< $NbrCellRow[$i]+1; $j++) {
echo 'R'.$i.'C'.$j.': '.
$NbrColSpan[$i][$j].'"%';
}
echo '';
}
echo '';
}
echo '';

?>





--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201003071902.13449.tchate...@free.fr



Re: this table in html how

2010-03-07 Thread Vadkan Jozsef
thank you! :)

On v, 2010-03-07 at 11:50 +, Camaleón wrote:
> On Sun, 07 Mar 2010 11:51:12 +0100, Vadkan Jozsef wrote:
> 
> > http://img52.imageshack.us/img52/7735/tablehow.png
> > 
> > i just can't write this table in html code.. :\
> > 
> > how can i make it?
> 
> ***
> 
> 
> cell1
> cell2
> 
> 
> cell3
> cell4
> cell5
> 
> 
> ***
> 
> CSS no included ;-)
> 
> Greetings,
> 
> -- 
> Camaleón
> 
> 



-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1267981775.2365.85.ca...@ubuntu



Re: this table in html how

2010-03-07 Thread Tim Clewlow
I just had to - its probably a disorder :-D



http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>






body {
margin:0px;
}

.left_column_50 {
width:50%;
float:left;
text-align:center;
margin:0px;
}

.right_column_50 {
width:50%;
float:right;
text-align:center;
margin:0px;
}

.left_column_33 {
width:33%;
float:left;
text-align:center;
margin:0px;
}

.center_column_34 {
width:34%;
float:left;
text-align:center;
margin:0px;
}

.right_column_33 {
width:33%;
float:right;
text-align:center;
margin:0px;
}








50%
50%
33%
34%
33%





-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/f88b131fe666e79c2c067f096c932787.squir...@192.168.1.100



Re: this table in html how

2010-03-07 Thread Camaleón
On Sun, 07 Mar 2010 11:51:12 +0100, Vadkan Jozsef wrote:

> http://img52.imageshack.us/img52/7735/tablehow.png
> 
> i just can't write this table in html code.. :\
> 
> how can i make it?

***


cell1
cell2


cell3
cell4
cell5


***

CSS no included ;-)

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.03.07.11.50...@gmail.com



Re: this table in html how

2010-03-07 Thread Adrian Levi
On 7 March 2010 21:19, Thierry Chatelet  wrote:
> Oup:
> More like that:


50%
50%


33%
33%
33%



I get to correct you back :-)
If your going to specify cols then the percentages need to match ;-)

Adrian

-- 
24x7x365 != 24x7x52 Stupid or bad maths?
 hm. I've lost a machine.. literally _lost_. it responds to
ping, it works completely, I just can't figure out where in my
apartment it is.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/d3826e641003070326r725e8a61ke1f4865e31948...@mail.gmail.com



Re: this table in html how

2010-03-07 Thread Thierry Chatelet
On Sunday 07 March 2010 11:56:10 Adrian Levi wrote:
> On 7 March 2010 20:51, Vadkan Jozsef  wrote:
> > http://img52.imageshack.us/img52/7735/tablehow.png
> >
> > i just can't write this table in html code.. :\
> >
> > how can i make it?
> 
> 
>  
>  
> 
>  
>  
>  
> 
> 
> Have no idea about standards compliance but it should render properly.
> 
> Adrian
> 
Oup:
More like that:


50%
50%


33%
33%
33%




-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201003071219.15488.tchate...@free.fr



Re: this table in html how

2010-03-07 Thread Thierry Chatelet
On Sunday 07 March 2010 11:56:10 Adrian Levi wrote:
> On 7 March 2010 20:51, Vadkan Jozsef  wrote:
> > http://img52.imageshack.us/img52/7735/tablehow.png
> >
> > i just can't write this table in html code.. :\
> >
> > how can i make it?
> 
> 
>  
>  
> 
>  
>  
>  
> 
> 
> Have no idea about standards compliance but it should render properly.
> 
> Adrian
> 

More like that:


50%
50%

33%
33%
33%




-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201003071217.28923.tchate...@free.fr



Re: this table in html how

2010-03-07 Thread Ron Johnson

On 2010-03-07 04:56, Adrian Levi wrote:

On 7 March 2010 20:51, Vadkan Jozsef  wrote:

http://img52.imageshack.us/img52/7735/tablehow.png

i just can't write this table in html code.. :\

how can i make it?



 
 




 
 
 


Have no idea about standards compliance but it should render properly.



Did you forget a TR tag above the 33% grouping?

--
Ron Johnson, Jr.
Jefferson LA  USA

"If God had wanted man to play soccer, he wouldn't have given
us arms."  Mike Ditka


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/4b938a5b.9060...@cox.net



Re: this table in html how

2010-03-07 Thread Adrian Levi
On 7 March 2010 20:51, Vadkan Jozsef  wrote:
> http://img52.imageshack.us/img52/7735/tablehow.png
>
> i just can't write this table in html code.. :\
>
> how can i make it?


 
 

 
 
 


Have no idea about standards compliance but it should render properly.

Adrian

-- 
24x7x365 != 24x7x52 Stupid or bad maths?
 hm. I've lost a machine.. literally _lost_. it responds to
ping, it works completely, I just can't figure out where in my
apartment it is.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/d3826e641003070256ie3a51d0k4b296e0e0c1fa...@mail.gmail.com



this table in html how

2010-03-07 Thread Vadkan Jozsef
http://img52.imageshack.us/img52/7735/tablehow.png

i just can't write this table in html code.. :\

how can i make it?


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1267959072.2365.66.ca...@ubuntu