IvanTW Posted March 2, 2015 Share Posted March 2, 2015 Hi, I have a quick question, just want to make sure I don't screw anything up before I do it. case "article": // single article item $sqlart = "SELECT * FROM Articles WHERE Article_ID = ".$_GET["id"]; $resultart = mysql_query($sqlart, $dbc); $rowart = mysql_fetch_array($resultart); $title = "mixrevu.com - Article: ".$rowart["Article_Title"]; $description = substr(strip_tags($rowart["Article_Story"]),0,100)."..."; break; case "article2": // single audio blog item $sqlart = "SELECT * FROM Articles2 WHERE Article2_ID = ".$_GET["id"]; $resultart = mysql_query($sqlart, $dbc); $rowart = mysql_fetch_array($resultart); $title = "mixrevu.com - Audio Blog: ".$rowart["Article2_Title"]; $description = substr(strip_tags($rowart["Article2_Story"]),0,100)."..."; break; As you can see above, my meta titles are displayed as ( mixrevu.com - Article " title of article is pulled here") but I want the article title to be displayed like this "title of article is pulled here" : Article - mixrevu.com. **So I just want to swap the order** Is it ok for me to swap the code on the $title line like ".$rowart["Article_Title"] :Article - mixrevu.com ????? Would I screw anything up? The question goes for "article single item and article2. If I am reading the code correctly the $sqlart to $rowart section is where the instructions are giving on what is what and the $title, $description is where I can acutally make the changes. Would I have to do anything to the inital $sqlart section????? Thanks for your help, -ivantw Link to comment https://forums.phpfreaks.com/topic/295028-meta-title-setup-swapping-question/ Share on other sites More sharing options...
CroNiX Posted March 2, 2015 Share Posted March 2, 2015 It would be: $title = $rowart["Article_Title"] . ': Article - mixrevu.com'; and $title = $rowart["Article2_Title"] . ': mixrevu.com - Audio Blog'; Link to comment https://forums.phpfreaks.com/topic/295028-meta-title-setup-swapping-question/#findComment-1507309 Share on other sites More sharing options...
IvanTW Posted March 3, 2015 Author Share Posted March 3, 2015 Awesome! CroNix! Thanks for your help! I figured it was a quick fix! Link to comment https://forums.phpfreaks.com/topic/295028-meta-title-setup-swapping-question/#findComment-1507319 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.