Jump to content
  • 0

Проблема с удалением строки в mysql с помощью php


Глеб
 Share

Question

Код в delete.php такой:


		<?php $query ="DELETE FROM goods WHERE id = 'id'"; ?>


 
		<h2>Удалить модель?</h2>
        <form method='POST'>
	        <input type='hidden' name='id' value='$id' />
	        <input type='submit' value='Удалить'>
        </form>";

А в контроллере такой:

 public function actionDelete($id)
    {
    	$goods = Goods::find()->one();
        return $this->render('delete', compact('goods'));	

    }

В итоге выводит вот :

 

Bad Request (#400)

Unable to verify your data submission.

The above error occurred while the Web server was processing your request.

Please contact us if you think this is a server error. Thank you.

 

 

В чем моя ошибка?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Увы но выдает ошибку 

код в delete.php


		<?php $query ="DELETE FROM goods WHERE id = 'id'"; ?>


 
		<h2>Удалить модель?</h2>
        <form method='POST'>
	        <input type='hidden' name='id' value='<?php echo $id?>' />
	        <input type='submit' value='Удалить'>
        </form>

А ошибка в скрине

Безымянный2.png

Link to comment
Share on other sites

  • 0

<?php $query ="DELETE FROM goods WHERE id = 'id'"; ?>
1. старайтесь в запросе все имена колонок и таблиц держать в кавычках
<?php $query ="DELETE FROM `goods` WHERE `id` = 'id'"; ?>
2. что значит "`id` = 'id'" - возможно имелось ввиду `id` = '$id'"
3. откуда вообще берется $id подозреваю что она должна получаться из $_GET['id'] попробуйте использовать напрямую get, если все заработает, останется защитить ее от инъекций

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