Files
MeDBia/videodb/doc/manual/search.html
Malin f55c91276e feat: add videodb media index with Docker stack
- Add videodb PHP/MySQL media collection manager (Blu-ray, DVD, CD)
- Dockerfile: PHP 8.1 + Apache with GD/mysqli/exif extensions
- docker-compose.yml: app on port 6761 + MySQL 8.0 with health checks
- docker-entrypoint.sh: auto-generates config.inc.php from env vars,
  waits for MySQL, initializes DB schema idempotently
- init-db.php: CLI schema installer using app's own prefix_query() logic
- Persistent volumes for DB, cache, and cover images

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-11 09:49:52 +02:00

29 lines
1.3 KiB
HTML

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title>VideoDB - Documentation</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<a href="index.html">Table of Contents</a>
<!-- begin content -->
<h1>Usage</h1>
<h2>Searching the Database</h2>
<p>The search screen allows you to search for one or more movies that match your criteria.</p>
<p>The simplest thing is to search for one or more keywords. Just put into the textfield and hit <code>Search</code>. The search is caseinsensitive and matches word parts, too. To search phrases you can enclose them in quotes <code>"</code>.<p>
<p>Examples:<br />
<code>wood</code> matches <code>Ed Wood</code> as well as <code>Clint Eastwood</code><br />
<code>"Ed wood"</code> only matches <code>Ed Wood</code> but <code>Ed Wood</code> matches <code>Eddy got lost in Sherwood Forest.</code>, too<br />
</p>
<p>To refine your search you can use the boolean operators <code>AND</code>, <code>OR</code> and <code>NOT</code></p>
<p>You can restrict your search to some genres by selecting the wanted genres and to some database fields by selecting them in the selectbox. To select multiple fields hold the <code>Ctrl</code>-Key while selecting.</p>
<!-- end content -->
</body>
</html>