Arkadaşlar veritabanındaki bilgileri php kodlarıyla tekrar nasıl alıp kullanabiliriz.
Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
<?php
mysql_connect("localhost","root","");
mysql_select_db("deneme");
$ad=$_POST["isim"];
$mesaj=$_POST["text"];
mysql_query("INSERT INTO `mesajlar` (`yazan`,`mesaj`,`zaman`)
VALUES ('$ad', '$mesaj', NOW() );");
?>