<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[PunBB Forums — Please help me resolve this error]]></title>
		<link>https://punbb.informer.com/forums/topic/8903/please-help-me-resolve-this-error/</link>
		<atom:link href="https://punbb.informer.com/forums/feed/rss/topic/8903/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Please help me resolve this error.]]></description>
		<lastBuildDate>Mon, 26 Sep 2005 00:41:26 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Please help me resolve this error]]></title>
			<link>https://punbb.informer.com/forums/post/52815/#p52815</link>
			<description><![CDATA[<p>Ok, thanks, I&#039;ll try it out. I knew about the semicolons, and was planning on getting rid of them. That&#039;s just what the original author put in.</p>]]></description>
			<author><![CDATA[null@example.com (pogenwurst)]]></author>
			<pubDate>Mon, 26 Sep 2005 00:41:26 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/52815/#p52815</guid>
		</item>
		<item>
			<title><![CDATA[Re: Please help me resolve this error]]></title>
			<link>https://punbb.informer.com/forums/post/52814/#p52814</link>
			<description><![CDATA[<p>A) You forgot to close </p><div class="codebox"><pre><code>if (!isset($_GET[&#039;action&#039;])) {
            ob_start();
            include_once(&quot;links.dat&quot;);
            $rawdat = ob_get_contents();
            ob_end_clean();
            $dat = strip_tags($rawdat, &#039;&lt;a&gt;&lt;b&gt;&lt;i&gt;&lt;u&gt;&lt;br&gt;&lt;p&gt;&#039;);</code></pre></div><p>That needs to have an end bracket.</p><p>B) Below that you put semicolons after your if statements.&nbsp; Get rid of them, they&#039;re not needed.</p><p>~Tim</p>]]></description>
			<author><![CDATA[null@example.com (Tim)]]></author>
			<pubDate>Sun, 25 Sep 2005 23:58:00 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/52814/#p52814</guid>
		</item>
		<item>
			<title><![CDATA[Please help me resolve this error]]></title>
			<link>https://punbb.informer.com/forums/post/52807/#p52807</link>
			<description><![CDATA[<p>Right now I&#039;m trying to integrate a simple link script called <a href="http://www.dawgiestyle.com/ds-linker/">DS Linker</a> into my forums. However, when I try to test the little progress I&#039;ve made so far, I get the following error:</p><div class="codebox"><pre><code>Parse error: parse error, unexpected $ in /mnt/web_g/d20/s22/a000skup/www/awesome/forum/linkerintegrated.php on line 69</code></pre></div><p>Here&#039;s the code I have so far (not much, and not yet very well polished, but it&#039;s a start)</p><div class="codebox"><pre><code>&lt;?php
# Email address for link submissions to be sent to. (Required)
$sendto = &quot;XXXXXXXXXXXXXXXXXXXXX&quot;;

# Set this to a password you will have to enter to approve links (Required)
$approvepass = &quot;XXXXXXXXXXXXXXXX&quot;;

# Subject line in the email notification. (Required)
$subject = pun_htmlspecialchars($pun_config[&#039;o_board_title&#039;]) . &#039; / New Link&#039;;

# Form position. Top = 1, Bottom = 0. (Required)
$form = &quot;0&quot;;

# Display name of link submitter with link? yes = 1, no = 0. (Required)
$submitname = &quot;1&quot;;

# Link descriptions? yes = 1, no = 0. (Required)
$description = &quot;1&quot;;

# Page title, e.g. the text between &lt;title&gt;&lt;/title&gt;. (Required)
$title = &quot;Links&quot;;

# Text at the top of the page, leave blank for none. (Optional)
$toptext = &quot;Member Links&quot;;

# For text longer than a few words, put it in a txt file, put the file in the same directory as linker.php, and give the filename here. (Optional)
$longtext = &quot;&quot;;

# End of config section, do not edit below this line
/*==================================================================================*/
$version = 1.3;
 
define(&#039;PUN_ROOT&#039;, &#039;./&#039;);
define(&#039;PUN_QUIET_VISIT&#039;, 1);
require PUN_ROOT.&#039;include/common.php&#039;;
 
//Set the page title here
$page_title = pun_htmlspecialchars($pun_config[&#039;o_board_title&#039;]) . &#039; / &#039; . $title;
define(&#039;PUN_ALLOW_INDEX&#039;, 1);
require PUN_ROOT.&#039;header.php&#039;;
require PUN_ROOT.&#039;include/parser.php&#039;;
 
?&gt;
        &lt;div class=&quot;block&quot;&gt;
            &lt;h2&gt;&lt;span&gt;&lt;?php echo($toptext); ?&gt;&lt;/span&gt;&lt;/h2&gt;
            &lt;div class=&quot;box&quot;&gt;
                &lt;div class=&quot;inbox&quot;&gt;
                    &lt;?php
        if (!isset($_GET[&#039;action&#039;])) {
            ob_start();
            include_once(&quot;links.dat&quot;);
            $rawdat = ob_get_contents();
            ob_end_clean();
            $dat = strip_tags($rawdat, &#039;&lt;a&gt;&lt;b&gt;&lt;i&gt;&lt;u&gt;&lt;br&gt;&lt;p&gt;&#039;);
    
        if ($longtext != &quot;&quot;) {
            include(&quot;$longtext&quot;);
            print (&quot;&lt;p&gt;&quot;);
        };
        if ($form == &quot;0&quot;) {
            print ($dat);
        };
        ?&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/div&gt;
&lt;?php
 
require PUN_ROOT.&#039;footer.php&#039;;</code></pre></div><p>Does anyone know how to stop this error? I can&#039;t proceed until I figure it out.</p><p>P.S. Even if i delete line 69 (the footer.php thing), the error still appears, just for a different line.</p>]]></description>
			<author><![CDATA[null@example.com (pogenwurst)]]></author>
			<pubDate>Sun, 25 Sep 2005 20:47:13 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/52807/#p52807</guid>
		</item>
	</channel>
</rss>
