Jump to content

javascript-php


ksun

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.