vote up 0 vote down star

i have the following javascript code:

http://www.nomorepasting.com/getpaste.php?pasteid=22561

in which the function makewindows does not seem to be working.

it does actuall create a window, however the html either contains what is quotes, or if I change it to

child1.document.write(json_encode($row2["ARTICLE_DESC"]));

creats a blank html page.

I moved this function to my main javascript file to include because I was getting errors before, but now no html is presented in the popupwindow. Is this because I am not retrieving article_Desc in thest3.php?

The other 2 files used are here:

http://www.nomorepasting.com/getpaste.php?pasteid=22562

and test3.php

http://www.nomorepasting.com/getpaste.php?pasteid=22563

flag

Thanks for the password. Hope it's not real. – tvanfosson Dec 8 '08 at 12:52
No problem, have fun on 127.0.0.1 – Joshxtothe4 Dec 8 '08 at 13:47
Still, I think it would be best to redact it before posting the code. Posting passwords is a bad habit to get into. – tvanfosson Dec 8 '08 at 14:57

4 Answers

vote up 4 vote down check

$row2["ARTICLE_DESC"] is PHP variable.

It is indeed a php variable, but it is not being rendered as php because it is not enclosed in <?php ?> tags

So, the correct way to do it is:

child1.document.write(<?php echo json_encode($row2["ARTICLE_DESC"]); ?>);

That way, the php, being a server side language, will render the value in $row2 before the page is rendered, so when the page finally gets rendered, that value will be in the javascript write function...as it's supposed to be.

link|flag
That gives an error without telling what the error is..missing quotes? – Joshxtothe4 Dec 8 '08 at 13:04
json_encode is a php function, so it needs to be within the php tags – Tom Haigh Dec 8 '08 at 13:48
yes tomhaigh is right...corrected the error now. – Andreas Grech Dec 8 '08 at 21:25
Would it be more logical to allow the function to take a parameter, or to use the above method. What would be the respective advantages/disadvantages? – Joshxtothe4 Dec 9 '08 at 12:13
vote up 0 vote down

I suspect that it is including the javascript after it has been parsed by the PHP interpreter. Try adding a parameter to makewindows and pass the value you intend to use in via the parameter when you construct the HTML.

 ...
 <p><a href='#' onclick='makewindows('"
  . json_encode($row2["ARTICLE_DESC"])
  . "'); return false;'>...


function makewindows(html){
   child1 = window.open ("about:blank");
   child1.document.write(html);
   child1.document.close();
}
link|flag
could you give an example? I tried passing $sql2 to makewindows but it did not like it. – Joshxtothe4 Dec 8 '08 at 12:59
Is accepting a parameter preferred above the other examples? – Joshxtothe4 Dec 9 '08 at 15:24
vote up 3 vote down

to print php variable you need php tags:

child1.document.write(<?php echo json_encode($row2["ARTICLE_DESC"]); ?>);
link|flag
That just gives an error, does it need quotes somewhere? – Joshxtothe4 Dec 8 '08 at 12:34
what kind of error you get? – Irmantas Dec 8 '08 at 13:10
u need quotes here: document.write('<?php ?>'); – Andreas Grech Dec 8 '08 at 21:27
vote up 1 vote down

$row2["ARTICLE_DESC"] is PHP variable.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.