<?PHP
if (... Not found some ID/Topic/Articles ...)
{
// Add this line to replace "HTTP/1.0 OK" before sending anything out
header("HTTP/1.0 404 Not Found");
// ...
// ... your original code to Display ID/Topic/Articles not found ... //
// ...
}
?>