stelthius Posted June 29, 2008 Share Posted June 29, 2008 Hi guys, Ok here is my problem, i have a script that pulls a list of my servers from the database, were im struggling is being able to remove a server from the DB by the page, what i want to do it now were the tables are is add another cell which will house the delete button at the end of each row of server info, im just struggling on how to do it as im new to php, Any help is greatly appretiated. <?php include("servers/config.php"); print '<b><font face="Verdana" size="2"><center>Currently Active Servers</center><br></font></b><div align="center"> <table border="0" cellpadding="3" cellspacing="0" width="100%"> <tr> <td height="19" bgcolor="#5376B5"> <font face="Verdana" size="2" color="#FFFFFF"> <b>Server IP</b></font></td> <td height="19" bgcolor="#5376B5"><b> <font face="Verdana" size="2" color="#FFFFFF"> Server Name</font></b></td> <td height="19" bgcolor="#5376B5"><b> <font face="Verdana" size="2" color="#FFFFFF"> VPSs</font></b></td> <td height="19" bgcolor="#5376B5"><b> <font face="Verdana" size="2" color="#FFFFFF"> CPUs</font></b></td> <td height="19" bgcolor="#5376B5"><b> <font face="Verdana" size="2" color="#FFFFFF"> RAM</font></b></td> <td height="19" bgcolor="#5376B5"><b> <font face="Verdana" size="2" color="#FFFFFF"> Price</font></b></td> <td height="19" bgcolor="#5376B5"><b> <font face="Verdana" size="2" color="#FFFFFF"> Connection</font></b></td> </tr>'; $query = "SELECT * FROM servers"; $result = mysql_query($query); while($r=mysql_fetch_array($result)){ $server_ip =$r['server_ip']; $server_name =$r['server_name']; $allowed_vps =$r['allowed_vps']; $cpu =$r['cpu']; $ram =$r['ram']; $price =$r['price']; $connection =$r['connection']; echo "<tr> <td width='90' style='border-left-width: 1px; border-right-width: 1px; border-top-width: 1px; border-bottom: 1px dotted #808080; padding: 3px'> <font face='Verdana' size='1'>$server_ip</font></td> <td width='90' style='border-left-width: 1px; border-right-width: 1px; border-top-width: 1px; border-bottom: 1px dotted #808080; padding: 3px'> <font face='Verdana' size='1'>$server_name</font></td> <td width='50' style='border-left-width: 1px; border-right-width: 1px; border-top-width: 1px; border-bottom: 1px dotted #808080; padding: 3px'> <font face='Verdana' size='1'>$allowed_vps</font></td> <td width='40' style='border-left-width: 1px; border-right-width: 1px; border-top-width: 1px; border-bottom: 1px dotted #808080; padding: 3px'> <font face='Verdana' size='1'>$cpu</font></td> <td width='40' style='border-left-width: 1px; border-right-width: 1px; border-top-width: 1px; border-bottom: 1px dotted #808080; padding: 3px'> <font face='Verdana' size='1'>$ram</font></td> <td width='40' style='border-left-width: 1px; border-right-width: 1px; border-top-width: 1px; border-bottom: 1px dotted #808080; padding: 3px'> <font face='Verdana' size='1'>$price</font></td> <td width='40' style='border-left-width: 1px; border-right-width: 1px; border-top-width: 1px; border-bottom: 1px dotted #808080; padding: 3px'> <font face='Verdana' size='1'>$connection</font></td> </tr>"; } print '</table>'; ?> Kindest Regards Rick. Quote Link to comment https://forums.phpfreaks.com/topic/112401-deleting-entry-from-db/ Share on other sites More sharing options...
thatsgreat2345 Posted June 29, 2008 Share Posted June 29, 2008 Do you know anything about Forms and $_GET and $_POST ? Check out this tutorial for deleting things from a mysql database http://www.tizag.com/mysqlTutorial/mysqldelete.php Quote Link to comment https://forums.phpfreaks.com/topic/112401-deleting-entry-from-db/#findComment-577060 Share on other sites More sharing options...
stelthius Posted June 29, 2008 Author Share Posted June 29, 2008 well i was thinking that but the information that is entered into the database is all the same near anough the only thing that would define one row from the other is the ID Example : id server_ip server_name allowed_vps cpu ram price connection 36 00.00.00.00 test 35 8 8GB $289 test 34 00.00.00.00 test 15 4 2GB $139 test So basicly in the table on the web page it shows like this Example : Server IP Server Name VPSs CPUs RAM Price Connection 00.00.00.00 test 35 8 8GB $289 test 00.00.00.00 test 15 4 2GB $139 test So my problem is adding the function into the table that will remove a certain ID so say my table once finished looked like this below Example : Server IP Server Name VPSs CPUs RAM Price Connection remove ? 00.00.00.00 test 35 8 8GB $289 test Del 00.00.00.00 test 15 4 2GB $139 test Del i would click Del on the top account and it would remove only that top account nothing else, i dont know if this makes sense but its the best way i can explain it right now. Regards Rick. Quote Link to comment https://forums.phpfreaks.com/topic/112401-deleting-entry-from-db/#findComment-577074 Share on other sites More sharing options...
TheBigRedStapler Posted June 29, 2008 Share Posted June 29, 2008 Well, you could use a list of checkboxes to select which one you delete by giving each box a higher value than the last... If you don't like checkboxes and want buttons all in one form you can name each of the submit buttons the same but with different values and then use something like this.. <? if ($_POST['delete']) { mysql_query('delete from mytable where id = \''.$_POST['delete'].'\''); } ?> HTH Quote Link to comment https://forums.phpfreaks.com/topic/112401-deleting-entry-from-db/#findComment-577082 Share on other sites More sharing options...
stelthius Posted June 29, 2008 Author Share Posted June 29, 2008 Hi, I'd personaly prefer to use buttons but then again i want it all working automaticly by this i mean me not having to change values of the buttons when a new server is added to the list, Your reply was very interesting tho sparked an idea Regards Rick. Quote Link to comment https://forums.phpfreaks.com/topic/112401-deleting-entry-from-db/#findComment-577085 Share on other sites More sharing options...
stelthius Posted June 29, 2008 Author Share Posted June 29, 2008 Hi Guys, just letting you know ive accomplished what i was doing thanks for the time & Help Greatly appretiated, Regards Rick. Quote Link to comment https://forums.phpfreaks.com/topic/112401-deleting-entry-from-db/#findComment-577272 Share on other sites More sharing options...
jelly Posted June 29, 2008 Share Posted June 29, 2008 [...] <? if ($_POST['delete']) { mysql_query('delete from mytable where id = \''.$_POST['delete'].'\''); } ?> [...] This is a good example of MySQL Injection This should be more like: <?php $delete_id = mysql_real_escape_string($_POST['delete']); mysql_query('DELETE FROM `mytable` where `id` = \''.$delete_id.'\' LIMIT 1'); ?> -- jelly Quote Link to comment https://forums.phpfreaks.com/topic/112401-deleting-entry-from-db/#findComment-577278 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.