if (do_name() != 'Home') : ?>
endif ?>
Posted by Tom De Smedt on Nov 26, 2007
Certainly, just use the str() command:
image("IMG_"+ str(iCounter) +".jpg", 0, 0)
Posted by anonymous on Nov 26, 2007
This also works:image("IMG_%s.jpg"%iCounter, 0, 0)See here for more on string formatting.
Posted by anonymous on Nov 26, 2007
include("util/comment.php"); ?>
Oops, that didn't work, let me try again:
This also works:
image("IMG_%s.jpg"%iCounter, 0, 0)See here for more on string formatting.
Int to String
Posted by newbee on Nov 26, 2007Is there any code to change an integer (0r number) into a string.
I need this for the following example;