Phpmyadmin (xampp for Windows) will not save data from perfectly good PHP and HTML code:
<html>
<?php
$news = $_POST['news'];
$con = mysql_connect['127.0.0.1','root',''];
mysql_select_db($con, 'chidon')
$select="INSERT INTO `news`(`news`) VALUES ([$news]";
mysql_query($con, $select);
?>
<head>
<meta charset="utf-8">
</head>
<body>
<form action='webpage.html' method="POST">
<div>
<h4>News:</h4><input type="text" name="news">
<input type="submit" name="submit" value="SUBMIT">
</body>
</html>
So please help me because it's very frustrating... Thanks.