You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
click
вывожу картинки на страницу в коде они есть а визуально нет
<div id="soder"><h1>альтернативный текст</h1><br/>
<?php
$var1 = 'images/big/';
$var2 = scandir($var1);
for($i=0;$i<count($var2);$i++){
if(($var2[$i] != ".")&&($var2[$i] != "..")){
$path = $var1.$var2[$i];
echo '<img href="'.$path.'" width="500" height="300"/>';
}
}
?>
</div>
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.