Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
where `id`=$id
..
<img src="image.gif" width="468" height="60" id="image1">
..
..
<style type="text/css">
#image1 {
border : 1 px solid black;
}
</style>
..
id=184746
<img src="image.gif" width="468" height="60" id="image1">
<img id="15646"</>
$query=mysql_query("INSERT INTO `image` (`id`,`name`) VALUES('','$name')") or die(mysql_error());
$query=mysql_query("SELECT * from `image` ORDER BY `id`") or die(mysql_error());
while ($row=mysql_fetch_array($query))
{
$id=$row['id'];
$image=$row['image'];
echo "http://saita.com/image.php?id=$id";
}
$id = (int) $_GET['id'];
$query=mysql_query("SELECT * from `image` WHERE `id` = '$id'") or die(mysql_error());
while ($row=mysql_fetch_array($query))
{
$image=$row['image'];
echo "<img src = '$image'>";
}