Skip to forum content
Code The World
We are a group of graphic designers and web developers trying to create a social network for the people, and not for the commercialization of said social network.
You are not logged in. Please login or register.
Pages 1
You must login or register to post a reply
- Registered: 2007-11-19
- Posts: 12
Topic: Delete data from a MySQL database
Description
How to remove and erase stored information from a MySQL database table.
The code
<?php
/*
* Change the first line to whatever
* you use to connect to the database.
*
* Change tablename to the name of your
* database table.
*
* This example would delete a row from
* a table based on the id of the row.
* You can change this to whatever you
* want.
*/
// Your database connection code
db_connect();
$query = "DELETE FROM tablename WHERE id = ('$id')";
$result = mysql_query($query);
echo "The data has been deleted.";
?>
- hotaussie
- New member
- Offline
- Registered: 2008-06-15
- Posts: 5
Re: Delete data from a MySQL database
Does this pose a potential security risk?
- Registered: 2010-01-02
- Posts: 1
Re: Delete data from a MySQL database
This would, if register_globals was set in the php.ini. It the server was using PHP5 it is unlikely however I do think that in the earlier versions of PHP4 it was turned on, an attacker could simply make the request...
http://example.com/path/to/file.php?id=1
and it would delete the table with an id of 1, this is easily scriptable so that it would go through and increment the id number until all the id's were completed
Posts: 3
Pages 1
You must login or register to post a reply
Powered by PunBB, supported by Informer Technologies, Inc.
Currently used extensions: pun_admin_manage_extensions_improved, pun_poll, pun_quote, pun_bbcode, pun_repository, pun_tags, pun_admin_add_user, google_analytics, pun_eggdrop, pun_recaptcha.
Copyright © 2007 - 2025 CodeTheWorld