I'm making a simple website with 3 pages in php. The main page is index.php and the other two can be opened through index.php via links.
The link to CSS is given in the index.php file and I want the CSS to get applied to all the other files as well. Do I have to put link tags in all php files to refer to the stylesheet? Is there any other way possible?
If you had header/top.php then copy all those files within your top.php as like
<link rel="stylesheet" href="style.css"/>...
and you can use top.php within your each php file just by adding
<?php include 'pathtocss/top.php'?>
If you have three different pages and linking all the css file in index.php, It will not get reflected in all the pages.
So better you can follow any of the three approach,
Put all the css file in one php file, say styles.php and link it in all the pages
Separate css file for each page.
You can go for single page application. but you have to do some magics using JS
Now the choice is yours!!
You can do one page named includes.php put into all yours files include and include this page in all your pages
Related
for example: you created a website and in that website you want to create a login page using php. Do you use the css file that you design your website with, to design login page?
You can use a single CSS page to style your whole website if you want to . You will just have to make sure you load in every html file that you load in the browser.
I would suggest splitting this up css file into parts if you expect your application to grow bigger.
PHP actually runs on the server and it renders html (usually).
So if the template you're rendering with php has the same css file included you could use the same css for both pages.
Now for your needs, the login page has possibly some css that your other pages don't need. I would suggest creating a common.css file with everything that both pages will have and another with the login page specific styles.
I hope that's what your looking for.
I have two sites, one stored in the root of server, another in a sub-folder as shown below.
SITE ONE
ROOT/index.php
ROOT/assets/includes/header.php - contains styles and scripts
SITE TWO
ROOT/SUB-FOLDER/index.php
ROOT/SUB-FOLDER/assets/includes/header.php - contains styles and scripts
I am using PHP includes in order to include external files where the first site works fine using the code below, however the second one don't:
include($_SERVER["DOCUMENT_ROOT"] . '/assets/includes/header.php');
Could you please help me to achieve similar result for the site stored in the SUB-FOLDER.
Thanks in advance.
Changing the include link to:
include('assets/includes/header.php');
and adding the
<base href="http://example.com/SUB-FOLDER">
tag to head of the included pages solved the my issue.
Im working on a section of my site which is for file storage. By default when you navigate to a folder without index.html all the files and directories are listed, and can be downloaded. I was wondering how I could keep this but style the page and add extra links and buttons to it. Thanks
The page is generated by mod_autoindex.
You can use the HeaderName directive to insert a file into the top of the response (including some content and <link>s to stylesheets.
I found this in a quick search, but haven't messed with it before:
http://paradox460.newsvine.com/_news/2008/04/05/1413490-how2-stylish-apache-directory-listings
At present I am using an include statement to display all my menus. However I understand that some of my links are broken when accessing pages that are not located in the same directory.
Is there a way, by using the same link regardless of file location it will always access the same pages.
For example
My main folder currently contains:
Files =
index.php
shop.php
mensTShirts.php
I also have the sub folders:
html
php
images
includes
css
items
The main problem I have is that from by using an include statement from to get the navBar from the html folder the links included do not work when a viewing a file from say the items folder.
So my question is to find out how to make the navigation links work for specific pages regardless of file location.
I hope you can understand my problem, I am also kind of new to this.
Any help is greatly appreciated.
Many Thanks
You should make config file to define your path. Then use the variable to include relative paths.
Let's say I have a simple CSS layout and my menu is a column on the side. This menu is going to be on every web page (About 10 web pages). If I have items on this menu in the form of links and such, how can I make it so that if I add a link on one page, it will add it to all pages? Would you just make it a PHP page and in that <div> element include a PHP file called menu or something, and just edit that PHP file (so I only have to edit that file and not every web page)?
If this is raw PHP (no frameworks) then you simply include it.
include('sidebar.php');
Make sure that you can access the file from where you are including it though. If you have files in a folder called foo for example, and accessed via example.com/foo/somefile.php you will have to change the include statement to include('../sidebar.php'); assuming sidebar.php is in the root.
As stated above, and include would do.
Drop this on every page you want your menu to appear:
<?php include("/yourMenu.php"); ?>
Just save the menu code as yourMenu.php and put it in the root and you are good to go.
i've used this trick before and it works well. you can use this in conjunction with an include php
Intelligent Navigation
If you are using the Apache web server it's even more simple and faster to use server side include (ssi). You can do the same for the footer and other common areas of your pages.
Here is the reference page: http://httpd.apache.org/docs/2.2/howto/ssi.html