Jenksuy Posted June 12, 2013 Share Posted June 12, 2013 Hey, I am trying to insert my variable into single quote marks. the following code works but does not put the single quote marks around the variable as it is part of the variable... <?php $user_id = get_current_user_id(); $files = glob('wp-content/uploads/'.$user_id.'/*'); natcasesort($files); foreach($files as $file) { echo '<img src="/' . $file . '" onclick="fakeClick(event, document.getElementById(' . $file . '))" />'; } ?> this appears as with now single quote around the emboldened.. <img src="/wp-content/uploads/1/portfolio-sample-main-image.png" onclick="fakeClick(event, document.getElementById(wp-content/uploads/1/portfolio-sample-main-image.png))"> however how I want to appear is as follows... <img src="/wp-content/uploads/1/portfolio-sample-main-image.png" onclick="fakeClick(event, document.getElementById('wp-content/uploads/1/portfolio-sample-main-image.png'))"> as you can see with single quotes... how can I do this? Thanks Link to comment https://forums.phpfreaks.com/topic/279060-how-do-i-put-my-php-variable-in-between-single-quote-marks/ Share on other sites More sharing options...
Irate Posted June 12, 2013 Share Posted June 12, 2013 echo "<img src='".$file."' onclick='fakeClick(event, document.getElementById(\"".$file."\")"; That should do the job, simply mask all output with backslashes. Edit: You need to use differing apostrophes if you are using strings within attributes. Edited my post above a bit. Link to comment https://forums.phpfreaks.com/topic/279060-how-do-i-put-my-php-variable-in-between-single-quote-marks/#findComment-1435508 Share on other sites More sharing options...
Jenksuy Posted June 12, 2013 Author Share Posted June 12, 2013 thanks... this hasnt seemed to work yet. it seems to put the first image in... but then stops all html after that... so something must be missing? Appreciate your help Link to comment https://forums.phpfreaks.com/topic/279060-how-do-i-put-my-php-variable-in-between-single-quote-marks/#findComment-1435511 Share on other sites More sharing options...
Jenksuy Posted June 12, 2013 Author Share Posted June 12, 2013 Got it working thanks... your maskign with backslashes worked as follows echo '<img src="/' . $file . '" onclick="fakeClick(event, document.getElementById(\'' . $file . '\'))" />'; Thanks Link to comment https://forums.phpfreaks.com/topic/279060-how-do-i-put-my-php-variable-in-between-single-quote-marks/#findComment-1435513 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.