In which language?
Javascript:
for (i = 0; i < items.length; i++) {
text += items[i] + "<br>";
}
PHP:
for ($i = 0; $i < count($items); $i++) {
$text .= $items[$i] . "<br/>";
}
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|