• Welcome to DNForum.com™ - Domain Sales, Domain Forum, Domain Appraisals, Domain Registrars
    If you are new to domains and looking to buy, sell and learn about domains then you have come to the right place. DNForum is the oldest global domain name community on the internet and continues to grow every day. There are over 45,000 domainers on DNForum doing everything from buying domains, selling domains, using our free in-house built tools, learning about domains and discussing domains. Take a minute and Register.

Wanted: Service need help with website editing

Status
Not open for further replies.

MPinelli

New Member
The Originals
Legacy Platinum Member
Joined
Dec 3, 2004
Messages
1,090
Reaction score
0
www.credit-card-approvals.com

i need some help editing the title pages in my site. Like for american express pages i would want an american express title to help search engines, and for discover a discover title etc.

I cant figure it out b/c i really dont know how to edit the database/
 
Replace of the current <title> tags with this:

PHP:
<?php
$titlename = $_GET['card'];

switch ($titlename) {

defualt:
echo("<title>Credit Card Applications Credit Card Offers www.Credit-Card-Approvals.com:</title>");
break;

case "Airline":
echo("<title>Place custom title for airline card here</title>");
break;

?>

Insert a new:

PHP:
case "Card Name Here":
echo("<title>Place custom title for card here</title>");
break;

Before the ?> for every card you want to have a custom page title for. Hope this helps.
 
where can i find those pages
 
Place it in list.php, replace the <title>Credit Card Applications Credit Card Offers www.Credit-Card-Approvals.com:</title> tag with the code above.
 
this is what i see in my list.php

<html>
<head>
<title><? echo $sitename; ?></title>
<meta name="title" content="Online Credit Card List">
<meta http-equiv="Content-Type" content="text/html; iso-8859-1">
<meta http-equiv="Pragma" content="cache">
<meta http-equiv="Content-Language" content="en">
<meta name="ROBOTS" content="INDEX,FOLLOW">
<meta name="description" content="Credit Card Applications for every occassion. Student, low interest, prepaid and more!">
<meta name="keywords" content="credit card applications">
<meta name="publisher" content="<? echo $sitename2; ?>">
<meta name="copyright" content="©Copyright 2004, <? echo $sitename2; ?>">
<meta name="rating" content="General">
<meta name="creation_Date" content="05/03/2004">
<meta name="revisit-after" content="2 days">
<meta name="doc-rights" content="Copywritten Work">
<meta name="doc-class" content="Completed">
<meta name="MSSmartTagsPreventParsing" content="true">
</head>
 
Status
Not open for further replies.
Back
Top Bottom