<?xml version='1.0' encoding='UTF-8'?>
<rss version='2.0'>
	<channel>
		<title>cotonti.com : WHATS WRONG WITH THIS</title>
		<link>https://www.cotonti.com</link>
		<description>Laatste forum onderwerpen</description>
		<generator>Cotonti</generator>
		<language>en</language>
		<pubDate>Tue, 21 Apr 2026 20:34:04 -0000</pubDate>

		<item>
			<title>biro</title>
			<description><![CDATA[thanks didnt know this thing....]]></description>
			<pubDate>Di, 28 Apr 2009 00:55:30 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/nl/forums?m=posts&q=2651&d=0#post11851]]></link>
		</item>
		<item>
			<title>TwistedGA</title>
			<description><![CDATA[<div class="highlight"><pre class="php">
&lt;?PHP
/* ====================
&#091;BEGIN_SED_EXTPLUGIN&#093;
Code=quicklogin
Part=header
File=quicklogin.header
Hooks=header.tags
Tags=header.tpl:{QUICK_LOGIN}
&#091;END_SED_EXTPLUGIN&#093;
============ */
if (!defined('SED_CODE')) { die('Wrong URL.'); }

$quick_login = &quot;&lt;form name=\&quot;login\&quot; action=\&quot;users.php?m=auth&amp;amp;a=check&amp;redirect=\&quot; method=\&quot;post\&quot;&gt;Username:
               &lt;input type=\&quot;text\&quot; class=\&quot;tinput\&quot; name=\&quot;rusername\&quot; size=\&quot;13\&quot; maxlength=\&quot;32\&quot; onfocus=\&quot;\&quot; /&gt; Password:
               &lt;input type=\&quot;password\&quot; class=\&quot;tinput\&quot; name=\&quot;rpassword\&quot; size=\&quot;13\&quot; maxlength=\&quot;32\&quot; /&gt;
               &lt;input type=\&quot;hidden\&quot; name=\&quot;rremember\&quot; value=\&quot;1\&quot;/&gt;
               &lt;input type=\&quot;submit\&quot; style=\&quot;font-size:10px;\&quot; value=\&quot;Login\&quot; /&gt;
               &lt;div&gt;&lt;input type=\&quot;hidden\&quot; name=\&quot;x\&quot; value=\&quot;GUEST\&quot; /&gt;&lt;/div&gt;&lt;div style=\&quot;display:inline;margin:0;padding:0\&quot;&gt;&lt;input type=\&quot;hidden\&quot; name=\&quot;x\&quot; value=\&quot;GUEST\&quot; /&gt;&lt;/div&gt;&lt;/form&gt;
               &lt;b&gt;Welcome Guest!     &lt;a href=https://www.cotonti.com/\&quot;users/register.html\&quot;&gt;Register&lt;/a&gt;
               &lt;a href=https://www.cotonti.com/\&quot;users/password-recover.html\&quot;&gt;Lost your password?&lt;/a&gt;&lt;/b&gt;&quot;;


$t-&gt; assign(array(&quot;QUICK_LOGIN&quot; =&gt; $quick_login,));

?&gt;
</pre></div>
<br />
<br />
If you use double quotes instead of single quotes on the HTML, you must add the back slash before each double quote or it stops reading it at the first occurance. Alternatively, you can use single quotes and don't have to use the back slahes. I went the fast route to try and fix it for ya.]]></description>
			<pubDate>Za, 25 Apr 2009 02:42:50 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/nl/forums?m=posts&q=2651&d=0#post11814]]></link>
		</item>
		<item>
			<title>biro</title>
			<description><![CDATA[i was making a plugin like leet login then i got an annoying error....<br />
<br />
here are codes<br />
<br />
quicklogin.header.php<br />
<div class="highlight"><pre class="php">&lt;?PHP
/* ====================
Seditio - Website engine
Copyright Neocrome
<a href="http://www.neocrome.net" rel="nofollow">http://www.neocrome.net</a>

&#091;BEGIN_SED&#093;
File=plugins/quicklogin/quicklogin.header.php
Version=1.0
Updated=2009-4-23
Type=Plugin
Author=biro
Description=A quick login plugin for header.tpl
&#091;END_SED&#093;

&#091;BEGIN_SED_EXTPLUGIN&#093;
Code=quicklogin
Part=header
File=quicklogin.header
Hooks=header.tags
Tags=header.tpl:{QUICK_LOGIN}
&#091;END_SED_EXTPLUGIN&#093;
============ */

if (!defined('SED_CODE')) { die('Wrong URL.'); }
		
			
$quick_login = &lt;form name=&quot;login&quot; action=&quot;users.php?m=auth&amp;amp;a=check&amp;amp;redirect=&quot; method=&quot;post&quot;&gt;Username:
					&lt;input type=&quot;text&quot; class=&quot;tinput&quot; name=&quot;rusername&quot; size=&quot;13&quot; maxlength=&quot;32&quot; onfocus=&quot;if (this.value == 'User Name') this.value = '';&quot; /&gt;&amp;nbsp;Password:
					&lt;input type=&quot;password&quot; class=&quot;tinput&quot; name=&quot;rpassword&quot; size=&quot;13&quot; maxlength=&quot;32&quot; /&gt;
					&lt;input type=&quot;hidden&quot; name=&quot;rremember&quot; value=&quot;1&quot;/&gt;
					&lt;input type=&quot;submit&quot; style=&quot;font-size:10px; &quot; value=&quot;Login&quot; /&gt;
					&lt;div&gt;&lt;input type=&quot;hidden&quot; name=&quot;x&quot; value=&quot;GUEST&quot; /&gt;&lt;/div&gt;&lt;div style=&quot;display:inline;margin:0;padding:0&quot;&gt;&lt;input type=&quot;hidden&quot; name=&quot;x&quot; value=&quot;GUEST&quot; /&gt;&lt;/div&gt;&lt;/form&gt;
                    &lt;b&gt;Welcome Guest! &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=https://www.cotonti.com/&quot;users/register.html&quot;&gt;Register&lt;/a&gt;&amp;nbsp;&amp;nbsp;
					&lt;a href=https://www.cotonti.com/&quot;users/password-recover.html&quot;&gt;Lost your password?&lt;/a&gt;&lt;/b&gt;;


$t-&gt; assign(array(
	&quot;QUICK_LOGIN&quot; 			=&gt; $quick_login,
	));	

?&gt;</pre></div>
<br />
quicklogin.setup.php<br />
<div class="highlight"><pre class="php">&lt;?PHP
/* ====================
Seditio - Website engine
Copyright Neocrome
<a href="http://www.neocrome.net" rel="nofollow">http://www.neocrome.net</a>

&#091;BEGIN_SED&#093;
File=plugins/quicklogin/quicklogin.setup.php
Version=1.0
Updated=2009-4-23
Type=Plugin
Author=biro
Description=A quick login plugin for header.tpl
Tags={QUICK_LOGIN}
&#091;END_SED&#093;

&#091;BEGIN_SED_EXTPLUGIN&#093;
Code=quicklogin
Name=Quick Login
Description=A quick login plugin for header.tpl
Version=1.0
Date=2009-4-23
Author=biro
Copyright=biro | Designed for cotonti use | Please ask me before copying codes |
Notes=
Tags={QUICK_LOGIN}
Auth_guests=R
Lock_guests=W12345A
Auth_members=R
Lock_members=W12345A
&#091;END_SED_EXTPLUGIN&#093;



==================== */

if (!defined('SED_CODE')) { die('Wrong URL.'); }

?&gt;
</pre></div>
<br />
<span style="color:#EF2929"><h6>looks like u have to click view plain to view codes...srry</h6></span>]]></description>
			<pubDate>Vr, 24 Apr 2009 22:42:19 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/nl/forums?m=posts&q=2651&d=0#post11796]]></link>
		</item>
	</channel>
</rss>