rickphp Posted November 14, 2010 Share Posted November 14, 2010 Hi, If I need to put commas within a variable how can this be achieved? i.e. if statement..... { $output = "text1,text2,text3"; Incase your wondering what I'm trying to do.. basically im using a header file on my site... i want different keywords within the meta tags depending on the page the user is on, so i want to include aprox 20 keywords in the $output which will be inserted in the comma area of the meta tags. Probably quite an easy way to do it but I'm not sure how to do it! Any help appreciated! Link to comment https://forums.phpfreaks.com/topic/218653-comma-problems/ Share on other sites More sharing options...
BlueSkyIS Posted November 14, 2010 Share Posted November 14, 2010 $an_array_of_words = ("word1","word or phrase 2","word 3"); $words_with_commas = implode(',', $an_array_of_words); echo $words_with_commas; Link to comment https://forums.phpfreaks.com/topic/218653-comma-problems/#findComment-1134121 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.