coderb Posted January 15, 2008 Share Posted January 15, 2008 hi all, no doubt a simple question: I'm trying to echo this dynamic button as follows: echo '<input type="Button" value="View Proof" onclick="href=temp/'.$myflnm.'.pdf">'; this renders: <input type="Button" value="View Proof" onclick="href=temp/filename.pdf"> problem is I need to include a set of single quotes around the href value. So, I need this: <input type="Button" value="View Proof" onclick="href='temp/filename.pdf'"> I tried this but fails on syntax error: echo '<input type="Button" value="View Proof" onclick="href=''temp/'.$myflnm.'.pdf''">'; any help appreciated. Link to comment https://forums.phpfreaks.com/topic/86130-solved-echo-with-quotes/ Share on other sites More sharing options...
adam291086 Posted January 15, 2008 Share Posted January 15, 2008 echo '<input type="Button" value="View Proof" onclick="href=''temp/'.$myflnm.'.pdf''">'; try echo "<input type=Button value=View Proof onclick=href='temp/.$myflnm."".pdf>"; Link to comment https://forums.phpfreaks.com/topic/86130-solved-echo-with-quotes/#findComment-439847 Share on other sites More sharing options...
coderb Posted January 15, 2008 Author Share Posted January 15, 2008 thanks, but I've just found what seems to be the correct way - using the escape character \ before the single quote in the string. Link to comment https://forums.phpfreaks.com/topic/86130-solved-echo-with-quotes/#findComment-439851 Share on other sites More sharing options...
sasa Posted January 15, 2008 Share Posted January 15, 2008 try echo '<input type="Button" value="View Proof" onclick="href=\'temp/'.$myflnm.'.pdf\'">'; Link to comment https://forums.phpfreaks.com/topic/86130-solved-echo-with-quotes/#findComment-439852 Share on other sites More sharing options...
adam291086 Posted January 15, 2008 Share Posted January 15, 2008 yeah that is the correct way, i tent to cheat and just let the browser do the work. LOL. Link to comment https://forums.phpfreaks.com/topic/86130-solved-echo-with-quotes/#findComment-439853 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.