Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.67K
~245 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags
php x 1

1 Posted Topic

Member Avatar for ElegantElephant

add the footer line before each exit() Example: <html> <head></head> <body> <?php include("header.php"); ?> //header file externally designed <?php if(condition){ //some code include("footer.php"); //if a external file for footer is designed exit(); } <?php include("footer.php"); ?> </body> </html> since these footers comes under if/else statement, no chances of displaying them …

Member Avatar for Bharane_1
0
245

The End.