vote up 0 vote down star

Hello,

I have the following PHP code pasted here:

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

Which produces the following html code:

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

My problem is that the popup window is not created, or if it is created that it is empty. I have used JSON encode as previously suggested, but that does not seem to work.

Also, no image is displayed, despite PIC_URL being a correct image. apprantly this is because of an unclosed style tag, however I do not know why that is being generated, or how to prevent it.

I would also like to know the best way to insert newlines into my php, so the generated html is not a contiguous block.

edit: ARTICLE_DESC is definitely not empty, despite what people are saying. However, I have used a different record to double check, and there is still the same problem, although img src and document.write are n o longer blank. The resulting html is here:

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

It definitely seem to be a problem with the unclosed <style ty tag, but I see nothing responsible for generating that in the php

flag

What happens when $_GET['pk'] is something along the lines of "'; DROP DATABASE; --"? – foxy Dec 4 '08 at 13:22
nothing, the test user does not have access to do that. – Joshxtothe4 Dec 4 '08 at 13:34
Any user can do that just by accessing whateverthefileiscalled.php?pk='; DROP DATABASE; -- (I don't think however that this example would work as in PHP you generally can't run more than one query in one mysql_query() call - but the point is still very important) – Tom Haigh Dec 4 '08 at 14:03
but if the mysql user test has no access rights to do this, how would it work? – Joshxtothe4 Dec 4 '08 at 14:16
ah, ok, sorry I see your point. It's still dangerous though. Why are you afraid of adding $pk = (int) $_GET['pk'] ? – Tom Haigh Dec 4 '08 at 15:04
show 4 more comments

3 Answers

vote up 0 vote down check

The picture is not displayed because you have <img src=""/>, which obviously isn't pointing anywhere. I would print_r($row) for a test and make sure that $row['PIC_URL']; is valid.

It also looks like $row2["ARTICLE_DESC"] has got nothing in it - I would check that your second query is actually returning a record - try doing something like:

$htmlset = mysql_query($sql2);
if (!$htmlset) die ('cannot find html description..');

Edit

It looks like lower down in the page your data from the database contains malformed HTML. It maybe worth putting this line in:

$row = array_map('htmlspecialchars', $row);

directly beneath the line while ($row = mysql_fetch_array($result))

This will cause the bad HTML to be displayed literally rather than parsed as HTML by the browser, and it should therefore not break the rest of the page.

link|flag
This is the problem though. Both ARTICLE_DESC and PIC_URL are valid, and defnitly contain data. It is only by adding the script to try and have a pop-up window that they are empty. – Joshxtothe4 Dec 4 '08 at 14:18
what would happen if article_desc contained its own script tags? – Joshxtothe4 Dec 4 '08 at 14:32
The script stuff is just another echo statement. It won't affect how the other data is being outputted. If you don't believe this comment out the script stuff and I think you will still have the same problem – Tom Haigh Dec 4 '08 at 15:01
Does this mean there is no way to show the html in a popup if it is malformed? if that is the case, is there any way to trap for an error so good html can be showin in the popup? – Joshxtothe4 Dec 5 '08 at 10:34
It's tricky if you are not in control of the HTML, if it is malformed then it is unlikely that the browser will correctly display it. Where are you getting it from and how is it getting into your DB - are you entirely sure that process isn't affecting the data? – Tom Haigh Dec 5 '08 at 10:37
show 3 more comments
vote up 0 vote down

Putting the HTML markup into your .js file, AJAX fetching just the values returned by MySQL query and plugging them in could fix it, not sure if this can be applied in your situation though. I think the & in "Ed Hardy Damen T-Shirt Skulls & Butterfly, Gr.M Neu+OVP" may be what breaks the whole thing, tried it on an entry without & in it?

link|flag
the html comes from a variable, and is not always in my control, so a fix like that is not useful – Joshxtothe4 Dec 4 '08 at 13:33
$string = str_replace("&","&amp;",$string) – Rich Bradshaw Dec 4 '08 at 15:54
vote up 0 vote down

Have you try without json_encode? Maybe this function returns bad value?

link|flag
I tried without JSON encode, and everybody said to use JSON encode. – Joshxtothe4 Dec 4 '08 at 13:11
JSON Encode returns a blank string in this case, indicating that there's no data to encode. Others would have problems if it didn't work. – The Wicked Flea Dec 4 '08 at 13:31

Your Answer

Get an OpenID
or

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