Snippets
Topictitel bij je donwload
Open in de map donwload het bestand file.php en vervang de query $sql = 'SELECT attach_id, is_orphan, in_message, post_msg_id, extension, physical_filename, real_filename, mimetype FROM ' . ATTACHMENTS_TABLE . ' WHERE attach_id = $download_id'; door onderstaande. in de array $attachments['topic_title'] staat dan de titel van de het topic waarvan de download heeft plaatsgevonden.
- Snippets: Selecteer alles
$sql = 'SELECT a.attach_id, a.is_orphan, a.in_message, a.post_msg_id, a.extension, a.physical_filename, a.real_filename, a.mimetype, b.topic_title
FROM ' . ATTACHMENTS_TABLE . ' a
LEFT JOIN ' . TOPICS_TABLE . ' b ON (a.topic_id = b.topic_id)
WHERE attach_id = ' . $download_id;
27490 maal bekeken