ksun Posted February 15, 2013 Share Posted February 15, 2013 function displayinfo() { document.getElementById("demo").innerHTML=<?php echo "hi";?>; } never done this b4, can anyone help me? Quote Link to comment https://forums.phpfreaks.com/topic/274546-javascript-php/ Share on other sites More sharing options...
requinix Posted February 15, 2013 Share Posted February 15, 2013 Your PHP will output function displayinfo() { document.getElementById("demo").innerHTML=hi; } Does that look correct? Quote Link to comment https://forums.phpfreaks.com/topic/274546-javascript-php/#findComment-1412718 Share on other sites More sharing options...
ksun Posted February 15, 2013 Author Share Posted February 15, 2013 well , what i kinda want, is say i want to write a php variable like $data Quote Link to comment https://forums.phpfreaks.com/topic/274546-javascript-php/#findComment-1412720 Share on other sites More sharing options...
requinix Posted February 15, 2013 Share Posted February 15, 2013 Okay, so say you try <?php $data = "hi"; ?> function displayinfo() { document.getElementById("demo").innerHTML=<?php echo $data;?>; } That will still output the same thing and will still have the same problem. It's the way you're outputting the value that's the problem, not whether it's a string or a variable or whatever. Now with that said, look at this Javascript code. document.getElementById("demo").innerHTML=hi; What do you think it will do? Quote Link to comment https://forums.phpfreaks.com/topic/274546-javascript-php/#findComment-1412722 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.