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. Quote 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>"; Quote 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. Quote 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\'">'; Quote 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. Quote Link to comment https://forums.phpfreaks.com/topic/86130-solved-echo-with-quotes/#findComment-439853 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.