HardyBoyz wrote:
> Need Help here...
> how can we know that data in database are edited?,i have a thousand record in 
> my database that impossible to check one by one. anybody know how the code?

04142007 0722 GMT-6

If you are writing something to a table, immediately call the data from the 
table and compare it to what you just inserted:

Table 1, Row 4
$data-to-be-inserted = "Monday April 14 2008";

Call from Table 1, Row 4
$data-inserted

if ($data-to-be-inserted === $data-inserted) {
        echo "insert completed";
}

You dont want to do this every time, and you could even use this as a separate 
file to run just for testing. Or you can put this code on in your php code and 
just comment it out when not in use.

Wade

Reply via email to