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? 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? 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 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? Link to comment https://forums.phpfreaks.com/topic/274546-javascript-php/#findComment-1412722 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.