digitalplace Posted March 10, 2008 Share Posted March 10, 2008 I am trying to get this array to work, but there is both a " and a ' in the value and I am not sure how to have it work properly. Any help is greatly appreciated: *********************************************************** // EXTERNAL LINKS $Ar_Ext_Links = array( "<a href="http://www.bbb.com" target="_blank"><img border="0" width="220" height="188" src="imagesr/1.gif" alt="" />" , "<a href="http://www.xxx.com" onclick="NewWindow(this.href,'popup','400','400','yes','center');return false" onfocus="this.blur()"><img border="0" width="220" height="188" src="imagesr/2.gif" alt="" />" , "<a href="http://www.zzz.com" onclick="NewWindow(this.href,'popup','400','400','yes','center');return false" onfocus="this.blur()"><img border="0" width="220" height="188" src="imagesr/2.gif" alt="" />" , "<a href="http://www.yyy.com/index.asp" target="_blank"><img border="0" width="220" height="188" src="imagesr/4.gif" alt="" />" , ); Link to comment https://forums.phpfreaks.com/topic/95301-array-with-and-in-the-value/ Share on other sites More sharing options...
trq Posted March 10, 2008 Share Posted March 10, 2008 you need to use \ to escape the double quotes. eg; $Ar_Ext_Links = array( "<img border=\"0\" width=\"220\" height=\"188\" src=\"imagesr/1.gif\" alt=\"\" />" , Link to comment https://forums.phpfreaks.com/topic/95301-array-with-and-in-the-value/#findComment-488131 Share on other sites More sharing options...
digitalplace Posted March 10, 2008 Author Share Posted March 10, 2008 Thank you that is the thing that I could not find but needed. All set. I appreciate your quick response. Link to comment https://forums.phpfreaks.com/topic/95301-array-with-and-in-the-value/#findComment-488136 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.