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.
<?
echo "<form method = 'POST' action = '' />
Автор :<input type = 'text' name = 'dobavil' />
Картинка: <input type = 'text' name = 'kartinka' />
<input type = 'submit' name='submit' value='Давай' />
</form>";
include "config.php";
if ($_POST['submit']) {
$dobavil = $_POST['dobavi'];
$kartinka = $_POST['kartinka'];
$query = mysql_query("INSERT INTO `pictures` (id, dobavil, kartinka) VALUES('','$dobavil,'$kartinka'')") or die (mysql_error());
}
if ($query) {
echo "Браво успешно добавихте картинката";
} else {
echo "Възникна някаква грешка";
}
?>
<?
include "config.php";
$query = mysql_query ("SELECT * from `pictures` order by `id` DESC ") or die (mysql_error());
$dobavil=$a['dobavil'];
$kartinka=$a['kartinka'];
while ($a=mysql_fetch_array($query)) {
echo "$dobavil <br /> $kartinka";
}
?>
<? echo "<img src = '$kartinka' />";
?>