Jump to content

[SOLVED] quick little bit of help.


seany123

Recommended Posts

is there a way to remove a row via a php query.... for example:

 

 

$salequery3 = $db->execute("update `points_market` remove row where `id`=?", array($seller['id']));

 

or something like that?

 

you mean DELETE?

 

<?php
$sql = sprintf("DELETE FROM points_market WHERE id='%s'", $seller['id']);
$salequery3 = $db->execute($sql);
?>

because... im echoing all rows in a table... and once one row becomes invalid.. i want it completely removed.

 

delete will delete it from your database, but sounds like you just don't want invalid rows to print to your page but remain in database?

 

It might be because I am tired but I don't think I understand what you are trying to do :(

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.