Ben mysql öğrenmeye çalışıyor ve tabloya veri ekleme / güncelleme ile bazı sorun yaşıyorum
Bu benim kod ve ben yeni veri geldi görmek için phpmyadmin gittiğinizde bu sayfayı çalıştırdıktan sonra, ben orada görmüyorum.
<?php
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(!$conn) { die("Could not connect"); }
$dbname = "test";
mysql_select_db($dbname, $conn);
mysql_query("INSERT INTO 'test'.'table1'
('A1', 'A2', 'A3', 'A4', 'A5', 'A6', 'A7', 'A8')
VALUES
('test1', 'test2', 'test3', 'test4', 'test5', 'test6', 'test7', 'test8')");
mysql_close($conn);
?>
Herkes bu ne yanlış söyleyebilir misin?