Note that there are some explanatory texts on larger screens.

plurals
  1. POPhantom items are being printed with no commands
    primarykey
    data
    text
    <p>On creating a sparse few pages in my web directory, there is an extremely large amount of debug that is outputted with no commands. The debug in question seems to be in relation to a table which I have below the outputted debug. The debug in question is seen here:</p> <p><a href="http://gyazo.com/28bafa37238fc5c17753cdf64611cc81.png" rel="nofollow">http://gyazo.com/28bafa37238fc5c17753cdf64611cc81.png</a></p> <p>Which corresponds to the output:</p> <p><a href="http://gyazo.com/e14f399b18fe6ddafa3882c3c8aff5e9.png" rel="nofollow">http://gyazo.com/e14f399b18fe6ddafa3882c3c8aff5e9.png</a></p> <p>The only explanation that I can think of to cause this phenomenon is that the php.ini file is allowing it somewhere, yet I have no idea what is causing this. Previous to asking this question, there was an additional line in between the &lt; number>Start and &lt; number>html parts with &lt; number>magic. This was solved by adding the lines:</p> <pre><code>magic_quotes_gpc = Off magic_quotes_runtime = Off magic_quotes_sybase = Off </code></pre> <p>to my php.ini.</p> <p>If anyone has any ideas as to what option affects this in the php.ini file, that would be much appreciated as any searches for this particular output have turned up as naught.</p> <p>An additional point is that the PHP build on this hosting provider is still in 5.3.25.</p> <p>The code relating to the table is as follows:</p> <pre><code>$out = "&lt;table align='center'&gt;&lt;th&gt;Proofer&lt;/th&gt; &lt;th&gt;Story&lt;/th&gt; &lt;th&gt;Author&lt;/th&gt; &lt;th&gt;Delete&lt;/th&gt;"; sqlConnect(); $sql = "SELECT * FROM `story` ORDER BY `st_name`"; $res = mysql_query( $sql ); while( $row = mysql_fetch_array( $res ) ) { $out .= "&lt;tr&gt;&lt;td&gt;&lt;a href='./profile?u=" . $row['user_id'] . "'&gt;". proofBy( $row['user_id'] ) ."&lt;/a&gt;&lt;/td&gt;"; $out .= "&lt;td&gt;&lt;a href='". $row['st_link'] ."'&gt;". $row['st_name'] ."&lt;/a&gt;&lt;/td&gt;"; $out .= "&lt;td&gt;&lt;a href='". $row['a_link'] ."'&gt;". $row['author'] ."&lt;/a&gt;&lt;/td&gt;"; $out .= "&lt;td&gt;&lt;a href='./storyMaster?d=". $row['st_id'] ."'&gt;Delete&lt;/a&gt;&lt;/td&gt;"; $out .= "&lt;/tr&gt;"; } mysql_close(); $out .= "&lt;/table&gt;"; </code></pre> <p>This is the only segment of code which seems like it would have the necessary impact due to the looping nature given here.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload