Is it possible to rewrite URLs in PHP to make them more user-friendly, such as changing "bild.php?img=test.jpg&width=50&height=50" to "test.jpg"?
To make URLs more user-friendly in PHP, you can use URL rewriting techniques. This involves creating rules in a .htaccess file to map user-friendly URLs to their corresponding dynamic URLs. In this case, you can rewrite "test.jpg" to "bild.php?img=test.jpg&width=50&height=50" using mod_rewrite in Apache.
RewriteEngine On
RewriteRule ^test.jpg$ bild.php?img=test.jpg&width=50&height=50 [L]