<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Free PHP Code</title>
	<atom:link href="http://www.allscoop.com/free-php-code.php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.allscoop.com/free-php-code.php</link>
	<description>Gadgets - PHP Code - ASP Code - Web Tools - Technology</description>
	<lastBuildDate>Sun, 28 Feb 2010 20:29:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: allscoop</title>
		<link>http://www.allscoop.com/free-php-code.php/comment-page-1#comment-5447</link>
		<dc:creator>allscoop</dc:creator>
		<pubDate>Wed, 17 Feb 2010 15:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.allscoop.com/free-php-code.php#comment-5447</guid>
		<description>Make sure your wamp is allowing short tags.</description>
		<content:encoded><![CDATA[<p>Make sure your wamp is allowing short tags.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A:MOHUN</title>
		<link>http://www.allscoop.com/free-php-code.php/comment-page-1#comment-5213</link>
		<dc:creator>A:MOHUN</dc:creator>
		<pubDate>Fri, 05 Feb 2010 18:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.allscoop.com/free-php-code.php#comment-5213</guid>
		<description>Hi everybody. Well, i have tried to install the &quot;Billing Software&quot; on my localhost(using wampserver 2.0). On mysql using password yes. so, I change th epassword in sites.xml to be able to access mysql server.  
All seems to be well adjust, but still when I want to start the billing software &quot;http://localhost/billing/&quot; when it start to open the index.php page so I get following errors 

admin = $admin; //loading the config $tmp_config = new CConfig($xml); $_CONF = $tmp_config-&gt;vars[&quot;config&quot;]; //loading the templates if ($this-&gt;admin) { if (is_array($_CONF[&quot;templates&quot;][&quot;admin&quot;])) { foreach ($_CONF[&quot;templates&quot;][&quot;admin&quot;] as $key =&gt; $val) { if ($key != &quot;path&quot;) $this-&gt;templates[$key] = new CTemplate($_CONF[&quot;templates&quot;][&quot;admin&quot;][&quot;path&quot;] . $_CONF[&quot;templates&quot;][&quot;admin&quot;][$key]); } } } else { if (is_array($_CONF[&quot;templates&quot;])) { foreach ($_CONF[&quot;templates&quot;] as $key =&gt; $val) { if (($key != &quot;path&quot; ) &amp;&amp; ($key != &quot;admin&quot;)) $this-&gt;templates[$key] = new CTemplate($_CONF[&quot;templates&quot;][&quot;path&quot;] . $_CONF[&quot;templates&quot;][$key]); } } } $base = new CBase(); $base-&gt;html = new CHtml(); $this-&gt;html = &amp;$base-&gt;html; //make a connection to db if (is_array($_CONF[&quot;database&quot;])) { $this-&gt;db = new CDatabase($_CONF[&quot;database&quot;]); //vars only if needed if ($_CONF[&quot;tables&quot;][&quot;vars&quot;]) { $this-&gt;vars = new CVars($this-&gt;db , $_CONF[&quot;tables&quot;][&quot;vars&quot;]); $base-&gt;vars = &amp;$this-&gt;vars; } $this-&gt;tables = &amp;$_CONF[&quot;tables&quot;]; } } function TableFiller($item) { if (file_exists(&quot;pb_tf.php&quot;)) { include(&quot;pb_tf.php&quot;); } } /** */ function Run() { global $_TSM; if (file_exists(&quot;pb_events.php&quot;)) { include(&quot;pb_events.php&quot;); $_TSM[&quot;PB_EVENTS&quot;] = @DoEvents(&amp;$this); } if (is_object($this-&gt;templates[&quot;layout&quot;])) { echo $this-&gt;templates[&quot;layout&quot;]-&gt;Replace($_TSM); } } } ?&gt;
Fatal error: Class &#039;CSite&#039; not found in F:\wamp\www\billing\index.php on line 9

is someone here who can help improving this problem... Or what am I doing woring!!
Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi everybody. Well, i have tried to install the &#8220;Billing Software&#8221; on my localhost(using wampserver 2.0). On mysql using password yes. so, I change th epassword in sites.xml to be able to access mysql server.<br />
All seems to be well adjust, but still when I want to start the billing software &#8220;http://localhost/billing/&#8221; when it start to open the index.php page so I get following errors </p>
<p>admin = $admin; //loading the config $tmp_config = new CConfig($xml); $_CONF = $tmp_config-&gt;vars["config"]; //loading the templates if ($this-&gt;admin) { if (is_array($_CONF["templates"]["admin"])) { foreach ($_CONF["templates"]["admin"] as $key =&gt; $val) { if ($key != &#8220;path&#8221;) $this-&gt;templates[$key] = new CTemplate($_CONF["templates"]["admin"]["path"] . $_CONF["templates"]["admin"][$key]); } } } else { if (is_array($_CONF["templates"])) { foreach ($_CONF["templates"] as $key =&gt; $val) { if (($key != &#8220;path&#8221; ) &amp;&amp; ($key != &#8220;admin&#8221;)) $this-&gt;templates[$key] = new CTemplate($_CONF["templates"]["path"] . $_CONF["templates"][$key]); } } } $base = new CBase(); $base-&gt;html = new CHtml(); $this-&gt;html = &amp;$base-&gt;html; //make a connection to db if (is_array($_CONF["database"])) { $this-&gt;db = new CDatabase($_CONF["database"]); //vars only if needed if ($_CONF["tables"]["vars"]) { $this-&gt;vars = new CVars($this-&gt;db , $_CONF["tables"]["vars"]); $base-&gt;vars = &amp;$this-&gt;vars; } $this-&gt;tables = &amp;$_CONF["tables"]; } } function TableFiller($item) { if (file_exists(&#8220;pb_tf.php&#8221;)) { include(&#8220;pb_tf.php&#8221;); } } /** */ function Run() { global $_TSM; if (file_exists(&#8220;pb_events.php&#8221;)) { include(&#8220;pb_events.php&#8221;); $_TSM["PB_EVENTS"] = @DoEvents(&amp;$this); } if (is_object($this-&gt;templates["layout"])) { echo $this-&gt;templates["layout"]-&gt;Replace($_TSM); } } } ?&gt;<br />
Fatal error: Class &#8216;CSite&#8217; not found in F:\wamp\www\billing\index.php on line 9</p>
<p>is someone here who can help improving this problem&#8230; Or what am I doing woring!!<br />
Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sulabh</title>
		<link>http://www.allscoop.com/free-php-code.php/comment-page-1#comment-4678</link>
		<dc:creator>sulabh</dc:creator>
		<pubDate>Sun, 13 Dec 2009 15:47:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.allscoop.com/free-php-code.php#comment-4678</guid>
		<description>hi.admin
i m new student of php i hav basic knowledge up to database.
i jus wana go through sum simple php projects..(include database) like any blg relate project or any anther
so could u help me in this case.</description>
		<content:encoded><![CDATA[<p>hi.admin<br />
i m new student of php i hav basic knowledge up to database.<br />
i jus wana go through sum simple php projects..(include database) like any blg relate project or any anther<br />
so could u help me in this case.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: george</title>
		<link>http://www.allscoop.com/free-php-code.php/comment-page-1#comment-3656</link>
		<dc:creator>george</dc:creator>
		<pubDate>Tue, 17 Nov 2009 23:46:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.allscoop.com/free-php-code.php#comment-3656</guid>
		<description>Hello. I found your Auto Dealer Inventory Software to be perfect. Is it possible to add a &quot;sold&quot; button that also modify all the uploaded pictures with a sold sign on top of them. 
Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hello. I found your Auto Dealer Inventory Software to be perfect. Is it possible to add a &#8220;sold&#8221; button that also modify all the uploaded pictures with a sold sign on top of them.<br />
Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: keith</title>
		<link>http://www.allscoop.com/free-php-code.php/comment-page-1#comment-3559</link>
		<dc:creator>keith</dc:creator>
		<pubDate>Sun, 15 Nov 2009 15:12:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.allscoop.com/free-php-code.php#comment-3559</guid>
		<description>Very nice software, thank you. New to php but i like it a lot.
K.</description>
		<content:encoded><![CDATA[<p>Very nice software, thank you. New to php but i like it a lot.<br />
K.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nasir</title>
		<link>http://www.allscoop.com/free-php-code.php/comment-page-1#comment-3049</link>
		<dc:creator>Nasir</dc:creator>
		<pubDate>Sat, 30 May 2009 06:00:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.allscoop.com/free-php-code.php#comment-3049</guid>
		<description>Thanks Very Very nic job</description>
		<content:encoded><![CDATA[<p>Thanks Very Very nic job</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: allscoop</title>
		<link>http://www.allscoop.com/free-php-code.php/comment-page-1#comment-1174</link>
		<dc:creator>allscoop</dc:creator>
		<pubDate>Thu, 25 Sep 2008 14:16:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.allscoop.com/free-php-code.php#comment-1174</guid>
		<description>Krista, that can be an easy task, I would recommend you try elance. I&#039;m sure the task can be completed quickly and cheap. (Just click the link below to go to elance)

&lt;div&gt;
&lt;a href=&#039;http://www.elance.com/provprofile?view_person=mvmole57&amp;rid=1CGSB&#039; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;
&lt;img src=&#039;http://www.elance.com/media/images/4.0/referral_badge_hire_the_best.png&#039; alt=&quot;Hire The Best&quot;/&gt;
&lt;/a&gt;
&lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>Krista, that can be an easy task, I would recommend you try elance. I&#8217;m sure the task can be completed quickly and cheap. (Just click the link below to go to elance)</p>
<div>
<a href='http://www.elance.com/provprofile?view_person=mvmole57&#038;rid=1CGSB' target="_blank" rel="nofollow"><br />
<img src='http://www.elance.com/media/images/4.0/referral_badge_hire_the_best.png' alt="Hire The Best"/><br />
</a>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krista</title>
		<link>http://www.allscoop.com/free-php-code.php/comment-page-1#comment-1158</link>
		<dc:creator>Krista</dc:creator>
		<pubDate>Wed, 24 Sep 2008 19:29:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.allscoop.com/free-php-code.php#comment-1158</guid>
		<description>I need php code for a facebook application that allows users to upload photos for tagging, similar to the &quot;Social Me&quot; application.

Any help?</description>
		<content:encoded><![CDATA[<p>I need php code for a facebook application that allows users to upload photos for tagging, similar to the &#8220;Social Me&#8221; application.</p>
<p>Any help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K.Elango Varadharajan</title>
		<link>http://www.allscoop.com/free-php-code.php/comment-page-1#comment-1082</link>
		<dc:creator>K.Elango Varadharajan</dc:creator>
		<pubDate>Thu, 18 Sep 2008 13:14:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.allscoop.com/free-php-code.php#comment-1082</guid>
		<description>Hi Sir/Madam

I am a begineer from Php programming level. so  need sample code for searching,cookies,sessions

your web page is very nice.

thank for your team members.

K.Elango varadharajan
Srirangam,Trichy,Tamilnadu.</description>
		<content:encoded><![CDATA[<p>Hi Sir/Madam</p>
<p>I am a begineer from Php programming level. so  need sample code for searching,cookies,sessions</p>
<p>your web page is very nice.</p>
<p>thank for your team members.</p>
<p>K.Elango varadharajan<br />
Srirangam,Trichy,Tamilnadu.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://www.allscoop.com/free-php-code.php/comment-page-1#comment-795</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Tue, 09 Sep 2008 23:44:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.allscoop.com/free-php-code.php#comment-795</guid>
		<description>Your software is really great, thanks for giving the world your software.

One thing I&#039;m missing is a small rental/location script with a inventory listing.</description>
		<content:encoded><![CDATA[<p>Your software is really great, thanks for giving the world your software.</p>
<p>One thing I&#8217;m missing is a small rental/location script with a inventory listing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Asif Khalyani</title>
		<link>http://www.allscoop.com/free-php-code.php/comment-page-1#comment-652</link>
		<dc:creator>Asif Khalyani</dc:creator>
		<pubDate>Fri, 04 Jul 2008 18:27:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.allscoop.com/free-php-code.php#comment-652</guid>
		<description>I am Asif Khalyani. I am software engineer. I have create one small site for php script. You can download here ajax, js framework, suphp, ajax &amp; php script, submit form script, login script, uplaod image without refresh page, upload images using zip file. You can download free php script. My site is phpasksdotcom.</description>
		<content:encoded><![CDATA[<p>I am Asif Khalyani. I am software engineer. I have create one small site for php script. You can download here ajax, js framework, suphp, ajax &amp; php script, submit form script, login script, uplaod image without refresh page, upload images using zip file. You can download free php script. My site is phpasksdotcom.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.allscoop.com/free-php-code.php/comment-page-1#comment-644</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 16 Jun 2008 11:03:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.allscoop.com/free-php-code.php#comment-644</guid>
		<description>Hello. I was trying to install Real Estate Website on my localhost(wampserver or easyphp) but I wasn&#039;t able to set up chmod777 (installation manual). So I couldn&#039;t install it. 
I&#039;m just a begginer to PHP. Would you help me to install it, please?

Thanks.</description>
		<content:encoded><![CDATA[<p>Hello. I was trying to install Real Estate Website on my localhost(wampserver or easyphp) but I wasn&#8217;t able to set up chmod777 (installation manual). So I couldn&#8217;t install it.<br />
I&#8217;m just a begginer to PHP. Would you help me to install it, please?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
