nightkarnation Posted June 9, 2010 Share Posted June 9, 2010 Hey guys I have the following php code that is being retreived by flash: $result = mysql_query("SELECT countdownDate, showType FROM cms_countdowndate"); $cant = 0; while($row=mysql_fetch_array($result)){ echo "countdownDate$cant=$row[countdownDate]&showType$cant=$row[showType]"; $cant++; } inside countdownDate theres some text and a + sign (the text is shown but the + sign isnt!) Any way I can tell php to allow the + sign to be "echoed" ?? Thanx in advance! Cheers Link to comment https://forums.phpfreaks.com/topic/204312-echo-the/ Share on other sites More sharing options...
Mchl Posted June 9, 2010 Share Posted June 9, 2010 It should be displayed by this code. You're sure it's not Flash that's removing it? Link to comment https://forums.phpfreaks.com/topic/204312-echo-the/#findComment-1070051 Share on other sites More sharing options...
nightkarnation Posted June 9, 2010 Author Share Posted June 9, 2010 Maybe it's flash...I thought it was php but if you say that it should be working then I am gonna have to figure it out through actionscript code. Thanks for the help! Link to comment https://forums.phpfreaks.com/topic/204312-echo-the/#findComment-1070057 Share on other sites More sharing options...
jd307 Posted June 10, 2010 Share Posted June 10, 2010 Is it possible to change the text within countdownDate to be + instead of +? If so, does this solve the problem? Link to comment https://forums.phpfreaks.com/topic/204312-echo-the/#findComment-1070176 Share on other sites More sharing options...
Genesis730 Posted June 10, 2010 Share Posted June 10, 2010 Try escaping the +?? Just a thought Link to comment https://forums.phpfreaks.com/topic/204312-echo-the/#findComment-1070315 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.