MollyBaloney Posted April 7, 2006 Share Posted April 7, 2006 I'm pretty new at php. I have my website up and running...I just don't have the name of it at the top of the page like it's supposed to be. Can someone help me?Molly Link to comment https://forums.phpfreaks.com/topic/6829-page-title/ Share on other sites More sharing options...
majocmatt Posted April 7, 2006 Share Posted April 7, 2006 This isn't really a PHP problem if I understand correctly, just make sure you have the <title> tag in the HEADexample:<html><head><title>This is where your title goes</title></head><body>....</body></html> Link to comment https://forums.phpfreaks.com/topic/6829-page-title/#findComment-24828 Share on other sites More sharing options...
wildteen88 Posted April 7, 2006 Share Posted April 7, 2006 Yeah to give your page a title make sure you place what you want your page title be inside the <title> and </title> tags.This isn't to do with PHP but more towards HTML. Link to comment https://forums.phpfreaks.com/topic/6829-page-title/#findComment-24837 Share on other sites More sharing options...
MollyBaloney Posted April 7, 2006 Author Share Posted April 7, 2006 Sorry about that...Just shows how brain dead I am where it concerns php and html. Thanks for your help..I will try it although I'm not sure where to put it in the script to begin with.Molly Link to comment https://forums.phpfreaks.com/topic/6829-page-title/#findComment-24864 Share on other sites More sharing options...
wildteen88 Posted April 8, 2006 Share Posted April 8, 2006 Have you learn't HTML? As if you did you should know where to put it as its the first thing you learn about HTML!If you look below. That is what a basic webpage should be coded like.[code]<html><head> <title>Your Page Title Here</title></head><body> Your webpage content goes here</body></html>[/code] Link to comment https://forums.phpfreaks.com/topic/6829-page-title/#findComment-25015 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.