<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Adsense Script &#187; like</title>
	<atom:link href="http://scriptahead.com/tag/like/feed/" rel="self" type="application/rss+xml" />
	<link>http://scriptahead.com</link>
	<description></description>
	<lastBuildDate>Thu, 24 May 2012 05:00:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>IS THERE AN APP OR SITE THAT&#8217;S LIKE THIS?</title>
		<link>http://scriptahead.com/469/is-there-an-app-or-site-thats-like-this/</link>
		<comments>http://scriptahead.com/469/is-there-an-app-or-site-thats-like-this/#comments</comments>
		<pubDate>Fri, 18 May 2012 05:01:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[that's]]></category>
		<category><![CDATA[there]]></category>
		<category><![CDATA[this]]></category>

		<guid isPermaLink="false">http://scriptahead.com/469/is-there-an-app-or-site-thats-like-this/</guid>
		<description><![CDATA[Question by : Is there an app or site that is like this? Now me being the person who adores video games and doesnt do well in school had an epiphany and I also thought it might already exist. In WoW, for example, I love watchinf the XP bar fill up as I get closer]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by </i>: <br />Is there an app or site that is like this?</strong><br />
Now me being the person who adores video games and doesnt do well in school had an epiphany and I also thought it might already exist. In WoW, for example, I love watchinf the XP bar fill up as I get closer to my goal of gaining a level (or most recently cenarion expedition rep), would an xp bar exist for real life things as you input data and it would fill up or decrease and fir certain things level up? It could help so many people like myself actually get things done, like drumming or drawing, or get my grades up. I mean why take the game away from the gamer when it can br played another way? If not, someone make one. Id do it but i dont know scripting</p>
<p><span id="more-469"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Colby</i><br/>That&#8217;s amazing&#8230;</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>What do you think? Answer below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/469/is-there-an-app-or-site-thats-like-this/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HOW CAN I WRITE A SCRIPT IN PHP TO PARSE OUT COMMA SEPARATED WORDS (LIKE IN A SOCIAL WEB SITE)?</title>
		<link>http://scriptahead.com/465/how-can-i-write-a-script-in-php-to-parse-out-comma-separated-words-like-in-a-social-web-site/</link>
		<comments>http://scriptahead.com/465/how-can-i-write-a-script-in-php-to-parse-out-comma-separated-words-like-in-a-social-web-site/#comments</comments>
		<pubDate>Sat, 12 May 2012 05:02:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[comma]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[parse]]></category>
		<category><![CDATA[separated]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[words]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://scriptahead.com/465/how-can-i-write-a-script-in-php-to-parse-out-comma-separated-words-like-in-a-social-web-site/</guid>
		<description><![CDATA[Question by John C: How can I write a script in php to parse out comma separated words (like in a social web site)? For example, If the user inputs a list of tags such as: tag,tagone,tag,tagtwo I want php to parse out the individual words and send them back to the server using regular]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by John C</i>: <br />How can I write a script in php to parse out comma separated words (like in a social web site)?</strong><br />
For example,</p>
<p>If the user inputs a list of tags such as:</p>
<p>tag,tagone,tag,tagtwo</p>
<p>I want php to parse out the individual words and send them back to the server using regular expressions (preg_match).  How do I do that?  I have never used regular expressions before.</p>
<p>Keep in mind that the number of words will be unknown.</p>
<p><span id="more-465"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by xizzi</i><br/>here&#8217;s an example maybe you can understand:</p>
<p>$  fruits = &#8220;mango, orange, papaya, apple, pineapple, grape&#8221;;<br />
 $  arrFruit = explode(&#8220;,&#8221;,$  fruits);   </p>
<p> foreach($  arrFruit as $  v){<br />
   echo trim($  v);<br />
 }</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>What do you think? Answer below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/465/how-can-i-write-a-script-in-php-to-parse-out-comma-separated-words-like-in-a-social-web-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FREE GAME MAKING SOFTWARE FOR FINAL FANTASY LIKE GAME? (SERIOUS ANSWERS ONLY)?</title>
		<link>http://scriptahead.com/414/free-game-making-software-for-final-fantasy-like-game-serious-answers-only/</link>
		<comments>http://scriptahead.com/414/free-game-making-software-for-final-fantasy-like-game-serious-answers-only/#comments</comments>
		<pubDate>Sat, 25 Feb 2012 17:03:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[answers]]></category>
		<category><![CDATA[fantasy]]></category>
		<category><![CDATA[final]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[making]]></category>
		<category><![CDATA[only]]></category>
		<category><![CDATA[serious]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://scriptahead.com/414/free-game-making-software-for-final-fantasy-like-game-serious-answers-only/</guid>
		<description><![CDATA[Question by TheFireWithin: Free game making software for Final Fantasy like game? (serious answers only)? I was wondering if anyone knew of any good game making software that I could make a final fantasy like game. Could be any FF, FF1, FF12, FF:My Life as a King, any of them really. I just want to]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by TheFireWithin</i>: <br />Free game making software for Final Fantasy like game? (serious answers only)?</strong><br />
I was wondering if anyone knew of any good game making software that I could make a final fantasy like game. Could be any FF, FF1, FF12, FF:My Life as a King, any of them really. I just want to make a FF looking game lol so if you could help me out with giving me a link of a site that is free, or if you could email me (just add yahoo to my name and that is my email address) a link to a free but not supposed to be free software, either way, I just would like to be able to get something like that.</p>
<p>Also it would be more helpful if I did not need to know scripts or programming to use the software since&#8230; I do not know them. Thanks.</p>
<p>And, please do not answer with anything like &#8220;No&#8221; or anything that doesn&#8217;t help me. </p>
<p>Thanks again.<br />
Okay, then if there are software that needs scripts that can be learned that would not be too difficult then you can state them too.</p>
<p><span id="more-414"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Kayla R</i><br/>honestly ur going to have a tough time to make a game since u need scripts and programming<br />
thats like the main thing of the game to make it work<br />
with out that its just blahhhh</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Add your own answer in the comments!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/414/free-game-making-software-for-final-fantasy-like-game-serious-answers-only/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HOW TO MAKE A SITE WITH THAT BANNER LIKE 911TABS.COM FOR IT&#8217;S EXTERNAL LINKS?</title>
		<link>http://scriptahead.com/411/how-to-make-a-site-with-that-banner-like-911tabs-com-for-its-external-links/</link>
		<comments>http://scriptahead.com/411/how-to-make-a-site-with-that-banner-like-911tabs-com-for-its-external-links/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 05:02:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[911tabs.com]]></category>
		<category><![CDATA[banner]]></category>
		<category><![CDATA[external]]></category>
		<category><![CDATA[It's]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://scriptahead.com/411/how-to-make-a-site-with-that-banner-like-911tabs-com-for-its-external-links/</guid>
		<description><![CDATA[Question by NEB 1993: how to make a site with that banner like 911tabs.com for it&#8217;s external links? i run a business in web design and i want to have a page where a client can log in to approve the site before they purchase it. I can set up the log in script using]]></description>
			<content:encoded><![CDATA[<a target="_blank" rel="nofollow" href="http://scriptahead.com/goto/http://your-own-search.com/"  target="_blank"><img src="http://searchenginescript.biz/se.jpg" alt="Search engine" border="0" /></a><p><strong><i>Question by NEB 1993</i>: <br />how to make a site with that banner like 911tabs.com for it&#8217;s external links?</strong><br />
i run a business in web design and i want to have a page where a client can log in to approve the site before they purchase it. I can set up the log in script using MySQL, but how do I add a banner to the pages like the one seen on 911tabs.com when you visit an external link.</p>
<p>(Example&#8230; http://www.911tabs.com/link/?6769987 &#8211; the banner is at the very top, then the external website is underneath)</p>
<p><span id="more-411"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Poonam</i><br/>You can find step by step guide on how to make a site at website like www.aplis.net ,etc .</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Know better? Leave your own answer in the comments!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/411/how-to-make-a-site-with-that-banner-like-911tabs-com-for-its-external-links/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>IS THERE ANY SCRIPT LIKE ASK.FM, THAT I CAN INSTALL ON MY OWN WEBSITE ?</title>
		<link>http://scriptahead.com/402/is-there-any-script-like-ask-fm-that-i-can-install-on-my-own-website/</link>
		<comments>http://scriptahead.com/402/is-there-any-script-like-ask-fm-that-i-can-install-on-my-own-website/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 17:01:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[ask.fm]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[there]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://scriptahead.com/402/is-there-any-script-like-ask-fm-that-i-can-install-on-my-own-website/</guid>
		<description><![CDATA[Question by : Is there any script like ask.fm, that I can install on my own website ? I think that all of you well know ask.fm website, and I am interested in having such a script in my website. Is it possible to have some thing like that? Thnx a lot. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Answer by]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by </i>: <br />Is there any script like ask.fm, that I can install on my own website ?</strong><br />
I think that all of you well know ask.fm website, and I am interested in having such a script in my website.<br />
Is it possible to have some thing like that?<br />
Thnx a lot.</p>
<p><span id="more-402"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Digital Pixels</i><br/>you can try something like wordpress with a template like this http://www.elegantthemes.com/gallery/askit/</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Add your own answer in the comments!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/402/is-there-any-script-like-ask-fm-that-i-can-install-on-my-own-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHERE CAN I GET A YAHOO ANSWERS SCRIPT LIKE APPLICATION FOR MY WEBSITE?</title>
		<link>http://scriptahead.com/362/where-can-i-get-a-yahoo-answers-script-like-application-for-my-website/</link>
		<comments>http://scriptahead.com/362/where-can-i-get-a-yahoo-answers-script-like-application-for-my-website/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 05:01:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[answers]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[YAHOO]]></category>

		<guid isPermaLink="false">http://scriptahead.com/362/where-can-i-get-a-yahoo-answers-script-like-application-for-my-website/</guid>
		<description><![CDATA[Question by sammi: Where can I get a yahoo answers script like application for my website? I want to begin a question answer service to my website visitors. Can anyone please tell me where I can get one that would resemble this Yahoo Answers? &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Answer by just &#8220;JR&#8221;Google &#8220;Yahoo Answer clone&#8221;: you will find]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by sammi</i>: <br />Where can I get a yahoo answers script like application for my website?</strong><br />
I want to begin a question answer service to my website visitors. Can anyone please tell me where I can get one that would resemble this Yahoo Answers?</p>
<p><span id="more-362"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by just &#8220;JR&#8221;</i><br/>Google &#8220;Yahoo Answer clone&#8221;: you will find a clone copy of Y!A, for 59$  .<br />
I do not think it is very good, but have a trial&#8230;<br />
I just developed http://www.namibiaanswers.com for the Namibian Government and charged 3500€ for the basic stage, so 59$  ???</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>What do you think? Answer below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/362/where-can-i-get-a-yahoo-answers-script-like-application-for-my-website/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>CAN SOMEONE TELL ME A SITE LIKE THIS OR BETTER THAN ▼ THAT GIVE ME FREE SUBDOMAIN NOT DOMAIN?</title>
		<link>http://scriptahead.com/350/can-someone-tell-me-a-site-like-this-or-better-than-%e2%96%bc-that-give-me-free-subdomain-not-domain/</link>
		<comments>http://scriptahead.com/350/can-someone-tell-me-a-site-like-this-or-better-than-%e2%96%bc-that-give-me-free-subdomain-not-domain/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 05:01:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[better]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[give]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[someone]]></category>
		<category><![CDATA[subdomain]]></category>
		<category><![CDATA[tell]]></category>
		<category><![CDATA[than]]></category>
		<category><![CDATA[this]]></category>

		<guid isPermaLink="false">http://scriptahead.com/350/can-someone-tell-me-a-site-like-this-or-better-than-%e2%96%bc-that-give-me-free-subdomain-not-domain/</guid>
		<description><![CDATA[Question by Alaa YoSeF: Can someone tell me a site like this or superior than ▼ that give me free subdomain not domain? http://www.newsit.es/ (Click above to go to this free web site hosting service.) Interests: Personal, Business. Free Web Space: 20,000 MB. Forced Ads: No ads (bannerless). Your Ads: Allowed. Upload: FTP, Browser. Editor:]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by Alaa YoSeF</i>: <br />Can someone tell me a site like this or superior than ▼ that give me free subdomain not domain?</strong></p>
<p>http://www.newsit.es/</p>
<p>(Click above to go to this free web site hosting service.)<br />
Interests: Personal, Business.<br />
Free Web Space: 20,000 MB.<br />
Forced Ads: No ads (bannerless).<br />
Your Ads: Allowed.<br />
Upload: FTP, Browser.<br />
Editor: Advanced, Basic, WYSIWYG.<br />
Scripting: PHP.<br />
Pre-Scripts: &#8211;<br />
Your URL: Top-level domain name, or Subdomain.<br />
Other Features: Bandwidth limit 300,000 MB/month.</p>
<p>Layered Panel.</p>
<p>PHP5, MySQL databases.</p>
<p>Addon domain.</p>
<p>AwStats statistics.</p>
<p>1-click scripts installer (like Fantastico).</p>
<p>Instant activation.</p>
<p>File size limit 10 MB.</p>
<p>No account expiration.</p>
<p>Multiple accounts granted (unlimited).</p>
<p><span id="more-350"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Computershell</i><br/>I&#8217;ve had a look not impressed &#8220;can&#8217;t complete your request&#8221;<br />
try later.<br />
If I were you I&#8217;d try http://own-free-website.com</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>What do you think? Answer below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/350/can-someone-tell-me-a-site-like-this-or-better-than-%e2%96%bc-that-give-me-free-subdomain-not-domain/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HOW MUCH WOULD I HAVE TO PAY, TO SOMEONE WHO COULD MAKE ME A SITE LIKE CLUB PENGUIN?</title>
		<link>http://scriptahead.com/336/how-much-would-i-have-to-pay-to-someone-who-could-make-me-a-site-like-club-penguin/</link>
		<comments>http://scriptahead.com/336/how-much-would-i-have-to-pay-to-someone-who-could-make-me-a-site-like-club-penguin/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 05:00:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[Club]]></category>
		<category><![CDATA[could]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[much]]></category>
		<category><![CDATA[Penguin]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[someone]]></category>
		<category><![CDATA[would]]></category>

		<guid isPermaLink="false">http://scriptahead.com/336/how-much-would-i-have-to-pay-to-someone-who-could-make-me-a-site-like-club-penguin/</guid>
		<description><![CDATA[Question by Brandon: How much would I have to pay, to someone who could make me a site like Club Penguin? Ok, How much would I have to pay, to someone who could make me a site like Club Penguin? And, how would I make a game like Club Penguin? Please do not just state]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by Brandon</i>: <br />How much would I have to pay, to someone who could make me a site like Club Penguin?</strong><br />
Ok, How much would I have to pay, to someone who could make me a site like Club Penguin?</p>
<p>And, how would I make a game like Club Penguin?<br />
Please do not just state &#8220;It&#8217;s to hard&#8221;.<br />
I really want to know.</p>
<p>I have learned all of HTML, and I am learning Java Script at the moment.</p>
<p>I know Club Penguin uses flash.</p>
<p>So, my question, can someone tell me how to make a site like club penguin, OR, How much money would I have to pay for someone to make me a site like Club Penguin.<br />
Thank You.<br />
I would like the actual game.  Like where people can walk around and purchase stuff.</p>
<p><span id="more-336"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Hobo M</i><br/>Just the site or the actual game??  Most web game developers charge $  80-200 an hour, and too make a game as huge as that your gonna need a few developers working several hundred hours&#8230;</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>What do you think? Answer below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/336/how-much-would-i-have-to-pay-to-someone-who-could-make-me-a-site-like-club-penguin/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WHAT KIND OF SCRIPT IS USED TO MAKE A SITE LIKE THIS? *PLEASE READ*?</title>
		<link>http://scriptahead.com/325/what-kind-of-script-is-used-to-make-a-site-like-this-please-read/</link>
		<comments>http://scriptahead.com/325/what-kind-of-script-is-used-to-make-a-site-like-this-please-read/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 17:01:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[kind]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[please]]></category>
		<category><![CDATA[read]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[this]]></category>
		<category><![CDATA[used]]></category>

		<guid isPermaLink="false">http://scriptahead.com/325/what-kind-of-script-is-used-to-make-a-site-like-this-please-read/</guid>
		<description><![CDATA[Question by babycheeks: What kind of Script is used to make a site like this? *Please read*? How can i make a site like this? http://sitemodel.net/index.php what script is used to make a site like this? &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Answer by KennethPHP is the scripting language used. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Add your own answer in the comments!]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by babycheeks</i>: <br />What kind of Script is used to make a site like this? *Please read*?</strong><br />
How can i make a site like this? http://sitemodel.net/index.php what script is used to make a site like this?</p>
<p><span id="more-325"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Kenneth</i><br/>PHP is the scripting language used.</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Add your own answer in the comments!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/325/what-kind-of-script-is-used-to-make-a-site-like-this-please-read/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WHERE CAN I GET A SCRIPT FOR A SITE LIKE I-AM-BORED.COM OR EBAUMSWORLD?</title>
		<link>http://scriptahead.com/309/where-can-i-get-a-script-for-a-site-like-i-am-bored-com-or-ebaumsworld/</link>
		<comments>http://scriptahead.com/309/where-can-i-get-a-script-for-a-site-like-i-am-bored-com-or-ebaumsworld/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 17:05:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[ebaumsworld]]></category>
		<category><![CDATA[iambored.com]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://scriptahead.com/309/where-can-i-get-a-script-for-a-site-like-i-am-bored-com-or-ebaumsworld/</guid>
		<description><![CDATA[Question by Storm: Where can I get a script for a site like i-am-bored.com or ebaumsworld? I need a full script, maybe separate scripts for the different sections, or maybe a website where I can learn how to make one. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Answer by Clr_X_SpiderThats actually a very complex question, As I can only direct you]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by Storm</i>: <br />Where can I get a script for a site like i-am-bored.com or ebaumsworld?</strong><br />
I need a full script, maybe separate scripts for the different sections, or maybe a website where I can learn how to make one.</p>
<p><span id="more-309"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Clr_X_Spider</i><br/>Thats actually a very complex question, As I can only direct you in a way to help but not solve it. Now of course you know you can right click the site and goto view page source, well thats the script as far as I comprehend your question that is.</p>
<p>More than likely those sites use multiple scripts HTML, CSS those I am certain of but there could be more. All I can really state is google some tutorials for those but use the source from those sites as well and try to figure out what you want to acomplish.</p>
<p>I&#8217;m sorry I cant answer it in a simpler way but this is how I learn and am continuing to learn. Its a pain, but good luck and perhaps someone else will be more helpful.</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Know better? Leave your own answer in the comments!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/309/where-can-i-get-a-script-for-a-site-like-i-am-bored-com-or-ebaumsworld/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

