spacing in php

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
jamal
Forum Commoner
Posts: 57
Joined: Sat Oct 26, 2002 7:53 pm
Location: London

spacing in php

Post 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);
User avatar
nathus
Forum Commoner
Posts: 49
Joined: Thu Dec 12, 2002 6:23 pm

Post by nathus »

um, put a space between them? is this what you wanted?

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