Page 1 of 1

spacing in php

Posted: Thu Dec 19, 2002 7:55 pm
by jamal
hi Guys
how can I specify a space between two or more strings??
As an example how can I specify a space between these two strings??

Code: Select all

printf("<br> Created Table %s.%s <br>\n",$database,$tablename);

Posted: Thu Dec 19, 2002 8:50 pm
by nathus
um, put a space between them? is this what you wanted?

printf("<br> Created Table %s %s <br>\n",$database,$tablename);