Without any code it's hard to help you.
Not seeing .css file
Am following the PHP Practitioner series - on the "Dry up your Views" video.
Why do 'require' statements work, but my (to css) statements won't work. It seems to be the routing that's interfering - it can't fetch the .css file because it's not in the routes.php file, I'm guessing.
If this is the case, would that have something to do with PHP being 'compiled' on the server whereas the html tag would only be processed once already in the browser?
For the purposes on this course I'm on MAMP with the following .htaccess file in my htdocs folder:
RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME}% !-d RewriteCond %{REQUEST_FILENAME}% !-f RewriteRule ^(.+)$ index.php [QSA,L]
PS, I don't know how to write .htaccess files - just copied this one from someone else.
Please or to participate in this conversation.