Numb_Encore
Registered
Моля някои маже ли да ми обясни как да добавя система за новинив писан сайт.Ако може да остави данни за контакт или да ми даде урок или нещо такова.
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.
Тов ти е conn.php (за връзка)<form method="POST" action="">
<input type="text" name="title">
<input type="text" name="content" style="width: 300px; height: 150px;">
<input type="submit" name="button">
<?
include "conn.php";
if(isset($_POST['button'])){
$title=$_POST['title'];
$content=$_POST['content'];
if(!empty($title) && !empty($content)){
$sql=mysql_query("INSERT INTO novini (title, content) VALUES ('$title','$content')") or die(mysql_error());
}
else { echo "propusnal si ne6to popalni go"; }
?>
индекс - тук се показват<?
$host = "localhost";
$user = "root";
$pass = "pass";
$db = "db";
mysql_connect($host, $user, $pass) or die(mysql_error());
mysql_select_db($db) or die(mysql_error());
$chars="SET CHARACTER SET cp1251";
mysql_query($chars);
?>
Tова е най-простата<?
$sql=mysql_fetch_array(mysql_query("SELECT * FROM novini ORDER BY id DESC"));
echo "$sql[title] <br /> $sql[content]";
?>