anthonydamasco Posted June 6, 2008 Share Posted June 6, 2008 Alright Simple problem. I am storing measurements in a database (feet/inches) so here is the issue. database field "measure" = 2' 9" $dem = $my_row['measure']; echo $dem; Result: 2' 9 how do i echo the string with the quotes at the end? Quote Link to comment https://forums.phpfreaks.com/topic/108987-solved-echoing-a-string-with-quotes-in-it/ Share on other sites More sharing options...
jonsjava Posted June 6, 2008 Share Posted June 6, 2008 <?php $dem = $my_row['measure']; $dem = str_replace("\"", "„", $dem); echo $dem; ?> Quote Link to comment https://forums.phpfreaks.com/topic/108987-solved-echoing-a-string-with-quotes-in-it/#findComment-559111 Share on other sites More sharing options...
anthonydamasco Posted June 6, 2008 Author Share Posted June 6, 2008 hey, that gave me this result 13' 2„ Quote Link to comment https://forums.phpfreaks.com/topic/108987-solved-echoing-a-string-with-quotes-in-it/#findComment-559113 Share on other sites More sharing options...
saint959 Posted June 6, 2008 Share Posted June 6, 2008 <?php $dem = $my_row['measure']; $dem = str_replace("\"", """, $dem); echo $dem; ?> think that may work Quote Link to comment https://forums.phpfreaks.com/topic/108987-solved-echoing-a-string-with-quotes-in-it/#findComment-559118 Share on other sites More sharing options...
jonsjava Posted June 6, 2008 Share Posted June 6, 2008 oops, wrong relace..hehe. Quote Link to comment https://forums.phpfreaks.com/topic/108987-solved-echoing-a-string-with-quotes-in-it/#findComment-559121 Share on other sites More sharing options...
anthonydamasco Posted June 6, 2008 Author Share Posted June 6, 2008 You guys rock! Thanks - worked, headache is finally going away Quote Link to comment https://forums.phpfreaks.com/topic/108987-solved-echoing-a-string-with-quotes-in-it/#findComment-559124 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.