Jump to content
  • 0

Удаление новостей


web-mindfreak
 Share

Question

Всем привет

Помогите плз

Не думайте что я лентяй ,для меня PHP одна радость)

Так вот

Я не могу написать скрипт Удаления новостей

Вот что получилось:

Файл delete.php

<?
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title>Удаление</title>
</head>

<body>
<?php
require_once('bd.php');
if ($_SESSION['Group'] == '1')
{
mysql_select_db('My');
$query = ("SELECT * FROM `news`");
$res = mysql_query($query);
while($myrow = mysql_fetch_array($res))

echo <<<HERE
<form action="del.php" method="post">
<input type="radio" id="$myrow[name]"> - $myrow[name]<br>
<input type="submit" value="Удалить">
</form>
HERE;
}
else
{
echo 'Вы не иеете доступа!';
}
?>
</body>
</html>

Файл del.php


<?
session_start();
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title>Удалить</title>
</head>

<body>
<?php

require_once('bd.php');
mysql_select_db('My');
$result = mysql_query("DELETE FROM `My`.`news` WHERE`news`.`name` = '$_POST[name]'") && die (mysql_error());



?>
</body>
</html>

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Тоже самое что :delete from `news` where `name`...

1) можете дамп таблицы привести?

2) почему вместо name стоит id: <input type="radio" id="$myrow[name]"> - $myrow[name] ? как по вашему переменная с формы будет передаваться?

Link to comment
Share on other sites

  • 0

Дамп не умею..

Могли бы вы сами написать код??

Очень прошу(

1) нужен дамп. поисковый запрос.

2) могу лишь натолкнуть на мысль:

а) нужно в запросе на удаление передать идентификатор id, для того что бы знать какую строку удалить из бд, типа: "DELETE FROM `news` WHERE `id` = $_POST['id']"

б) а в форме должно быть типа того: <input type="radio" name="$myrow['id']"> - $myrow[name]

в) хотя..., я в принципе уже написал за вас :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy