Let's say you have a table that show some strings :
(from ###.game.php )
and some "1 2 3 4" images in a "numbers.png" file in the img folder (like 40*40 pixels in a 160*40 pixels file )
Is there an easy way to put the images in place of the strings?
(from ###.game.php )
Code: Select all
$this->notifyAllPlayers( "tableWindow", '', array(
"id" => 'finalScoring',
"title" => clienttranslate("Result of this round"),
"table" => array( array( "one", "two" ), array( "three", "four" ) ),
"closing" => clienttranslate( "Ok" )
) );
Is there an easy way to put the images in place of the strings?