i am having problems trying to add the <h1> tag to my php code here is the code with out
echo $hackname = $result['hackname'] ;
basicly what that dose is pull that hacks name from the data base and shows it at the top of the page now when i add my <h1> tags to make that hack look like a title
By the way, you can’t scrap the whole '$hackname = ’ part and just echo $result[‘hackname’]. Defining a variable in an echo statement will work, but doesn’t make much sense, especially in your case. Here’s the above method without the '$hackname = '.