Hi2all
I have 2 folders "Main" and "Login"...In Main Page
i have index.php & Top.php ,Top.php contains some
pictures,pictures are also in main folder. when i
include Top.php in Index.php..index.php shows all
images.........but when i call top.php in login.php
which is reside in Login folder ...images are not shown.
Main folder
----------------------------------------------
index.php
<?php
include("top.php");
?>
Index.php show all images which are in top.php
---------------------------------------------
Login Folder
---------------------------------------------
login.php
<?php
include("../main/top.php");
?>
--------------------------------------------