Well, in a line of a website i want to get to columns like;
something [itssize]
sth [itssize]
othersth [itssize]
etc.
note the visual attractiveness ;)
first column is made up of strings of different lengths but I'd like second
column to be in nice order ( each "[" under another and so on )
In HTMlL code this spaces between the end of the name and "[" need tto be
filled with " ". I know ho many spaces is needed but what to write in
PHP code to make it multiply those   to the required value ?
example which is wrong ofcourse but make you understand me:
echo ("something <? $spaces *   ?>[itssize]");
Anybody ?
something [itssize]
sth [itssize]
othersth [itssize]
etc.
note the visual attractiveness ;)
first column is made up of strings of different lengths but I'd like second
column to be in nice order ( each "[" under another and so on )
In HTMlL code this spaces between the end of the name and "[" need tto be
filled with " ". I know ho many spaces is needed but what to write in
PHP code to make it multiply those   to the required value ?
example which is wrong ofcourse but make you understand me:
echo ("something <? $spaces *   ?>[itssize]");
Anybody ?
Comment