<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Have you recently edited any of these files?"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Have you recently edited any of these files?"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Have you recently edited any of these files?</title>
				<description><![CDATA[ When entering guestbook following error appears at the top: <br /> <br /> Parse error: parse error, unexpected '&amp;', expecting T_STRING or T_VARIABLE or '{' or '$' in /home/turtlesj/public_html/dirtydolls/guestbook/lib/mysql.class.php on line 20]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4865/17254.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4865/17254.php</link>
				<pubDate><![CDATA[Wed, 27 Jul 2005 22:53:47]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Surely the title of this thread answers your problem]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4865/17257.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4865/17257.php</link>
				<pubDate><![CDATA[Wed, 27 Jul 2005 23:58:47]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>can help me ? please</title>
				<description><![CDATA[ can help me to edit for error<br /> Parse error: parse error, unexpected '&amp;', expecting T_STRING or T_VARIABLE or '{' or '$' in /home/turtlesj/public_html/dirtydolls/guestbook/lib/mysql.class.php on line 20]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4865/17265.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4865/17265.php</link>
				<pubDate><![CDATA[Thu, 28 Jul 2005 08:03:29]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>please help me?</title>
				<description><![CDATA[ this error in my guestbook <br /> code:<br /> Parse error: parse error, unexpected '&amp;', expecting T_STRING or T_VARIABLE or '{' or '$' in /home/turtlesj/public_html/dirtydolls/guestbook/lib/mysql.class.php on line 20<br /> <br /> Below is a copy of my my sql class file <br /> code:<br /> &lt;?php<br /> /**<br />  * ----------------------------------------------<br />  * Advanced Guestbook 2.3.1 (PHP/MySQL)<br />  * Copyright (c)2001 Chi Kien Uong<br />  * URL: <a class="snap_shots" href="http://www.proxy2.de" target="_blank" rel="nofollow">http://www.proxy2.de</a><br />  * ----------------------------------------------<br />  */<br /> <br /> class gbook_sql {<br /> <br />     var $conn_id;<br />     var $result;<br />     var $record;<br />     var $db = array();<br />     var $port;<br /> <br />     function gbook_sql() {<br />         global $GB_DB;<br />         $this-&gt;db =&amp; $GB_DB;<br />         if(ereg(":",$this-&gt;db['host'])) {<br />             list($host,$port) = explode(":",$this-&gt;db['host']);<br />             $this-&gt;port = $port;<br />         } else {<br />             $this-&gt;port = 3306;<br />         }<br />     }<br /> <br />     function connect() {<br />         $this-&gt;conn_id = mysql_connect($this-&gt;db['host'].":".$this-&gt;port,$this-&gt;db['user'],$this-&gt;db['pass']);<br />         if ($this-&gt;conn_id == 0) {<br />             $this-&gt;sql_error("Connection Error");<br />         }<br />         if (!mysql_select_db($this-&gt;db['dbName'], $this-&gt;conn_id)) {<br />             $this-&gt;sql_error("Database Error");<br />         }<br />         return $this-&gt;conn_id;<br />     }<br /> <br />     function query($query_string) {<br />         $this-&gt;result = mysql_query($query_string,$this-&gt;conn_id);<br />         if (!$this-&gt;result) {<br />             $this-&gt;sql_error("Query Error");<br />         }<br />         return $this-&gt;result;<br />     }<br /> <br />     function fetch_array($query_id) {<br />         $this-&gt;record = mysql_fetch_array($query_id,MYSQL_ASSOC);<br />         return $this-&gt;record;<br />     }<br /> <br />     function num_rows($query_id) {<br />         return ($query_id) ? mysql_num_rows($query_id) : 0;<br />     }<br /> <br />     function num_fields($query_id) {<br />         return ($query_id) ? mysql_num_fields($query_id) : 0;<br />     }<br /> <br />     function free_result($query_id) {<br />         return mysql_free_result($query_id);<br />     }<br /> <br />     function affected_rows() {<br />         return mysql_affected_rows($this-&gt;conn_id);<br />     }<br /> <br />     function close_db() {<br />         if($this-&gt;conn_id) {<br />             return mysql_close($this-&gt;conn_id);<br />         } else {<br />             return false;<br />         }<br />     }<br /> <br />     function sql_error($message) {<br />         global $TEC_MAIL;<br />         $description = mysql_error();<br />         $number = mysql_errno();<br />         $error ="MySQL Error : $message\n";<br />         $error.="Error Number: $number $description\n";<br />         $error.="Date        : ".date("D, F j, Y H:i:s")."\n";<br />         $error.="IP          : ".getenv("REMOTE_ADDR")."\n";<br />         $error.="Browser     : ".getenv("HTTP_USER_AGENT")."\n";<br />         $error.="Referer     : ".getenv("HTTP_REFERER")."\n";<br />         $error.="PHP Version : ".PHP_VERSION."\n";<br />         $error.="OS          : ".PHP_OS."\n";<br />         $error.="Server      : ".getenv("SERVER_SOFTWARE")."\n";<br />         $error.="Server Name : ".getenv("SERVER_NAME")."\n";<br />         echo "&lt;b&gt;&lt;font size=4 face=Arial&gt;$message&lt;/font&gt;&lt;/b&gt;&lt;hr&gt;";<br />         echo "&lt;pre&gt;$error&lt;/pre&gt;";<br />         if (eregi("^[_a-z0-9-]+(\\.[_a-z0-9-]+)*@([0-9a-z][0-9a-z-]*[0-9a-z]\\.)+[a-z]{2,5}$", $TEC_MAIL) ) {<br />             $headers = "From: ".$this-&gt;db['user']."@".$this-&gt;db['host']."\nX-Mailer: Advanced Guestbook 2";<br />             // @mail("$TEC_MAIL","Guestbook - Error","$error","$headers");<br />         }<br />         exit();<br />     }<br /> <br /> }<br /> <br /> ?&gt;]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4865/17266.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4865/17266.php</link>
				<pubDate><![CDATA[Thu, 28 Jul 2005 08:12:01]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ The line in question is [b]$this-&gt;db =&amp; $GB_DB;[/b]. I'll look into it when I get home.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4865/17267.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4865/17267.php</link>
				<pubDate><![CDATA[Thu, 28 Jul 2005 10:23:48]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>error</title>
				<description><![CDATA[ yes , the line is $this-&gt;db =&amp; $GB_DB; , why about line is error, please give me to answer ?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4865/17269.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4865/17269.php</link>
				<pubDate><![CDATA[Thu, 28 Jul 2005 12:45:00]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ The code is correct. It's a check. Did you make any changes just before this happened?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4865/17270.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4865/17270.php</link>
				<pubDate><![CDATA[Thu, 28 Jul 2005 13:48:16]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>error</title>
				<description><![CDATA[ no, i'm not a change the code.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4865/17271.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4865/17271.php</link>
				<pubDate><![CDATA[Thu, 28 Jul 2005 14:58:07]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ The you posted file is correct. Check the database information in the config.inc.php file.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4865/17284.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4865/17284.php</link>
				<pubDate><![CDATA[Fri, 29 Jul 2005 09:42:59]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
	</channel>
</rss>