Google app engine with php

A style sheet is relative to the web-page path that it is called from or a fully qualified URL.

// Fully qualified URL:
<link rel="stylesheet" href="http://yourSite.com/your/special/path/style.css" />

// OR Relative to web-page path:
<?php echo getcwd() ; /* DEBUG - to be deleted */?>
<link rel="stylesheet" href="./relative/path/style.css">

Edit:
Changed path to URL.

Edit:
I just noticed @Vishal_Patel this is your first post! Welcome to the forum.

1 Like