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 Quote Link to comment 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> Quote Link to comment 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. Quote Link to comment 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 Quote Link to comment 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] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.