<?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; help</title>
	<atom:link href="http://scriptahead.com/tag/help/feed/" rel="self" type="application/rss+xml" />
	<link>http://scriptahead.com</link>
	<description></description>
	<lastBuildDate>Tue, 22 May 2012 17:01:36 +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>CAN SOMEONE HELP WITH MY PHP PROBLEM?</title>
		<link>http://scriptahead.com/470/can-someone-help-with-my-php-problem/</link>
		<comments>http://scriptahead.com/470/can-someone-help-with-my-php-problem/#comments</comments>
		<pubDate>Sat, 19 May 2012 17:01:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[someone]]></category>

		<guid isPermaLink="false">http://scriptahead.com/470/can-someone-help-with-my-php-problem/</guid>
		<description><![CDATA[Question by phall257: Can someone help with my php problem? Hi I need help with my php script. This is a basic site that creates a portfolio page of photographs. On the top it has the massive picture, and on the bottom there are thumbnails that update the photo on top when you hover with]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by phall257</i>: <br />Can someone help with my php problem?</strong><br />
Hi I need help with my php script.  This is a basic site that creates a portfolio page of photographs.  On the top it has the massive picture, and on the bottom there are thumbnails that update the photo on top when you hover with your mouse.  My problems are that (a) I need the thumbnails to wrap after 5 images (start a new line of thumbnails) and (b) I would love it if when you CLICK the thumbnail, it &#8220;locks&#8221; that picture in place (so when you move your mouse over another photo it will not change &#8211; but I do still want the hover feature until they click, not sure if it is possible.)  Here is my code so far:</p>
<p><?php</p>
<p>$  thumbnail_height = 60;<br />
$  image_height = 400;</p>
<p>function format_portfolio ($  dirname, $  filenames)<br />
{<br />
global $  thumbnail_height;<br />
global $  image_height;</p>
<p>$  str .= "<br />
<table width=775>
<tr>
<td width=775 align=center>&#8220;;<br />
$  str .= &#8220;<img border=0 name='placeholder' height=$  image_height src='images/$  dirname/$  filenames[0]'><br />&#8220;;<br />
$  str .= &#8220;<br />
<table width=775 cellpadding=5>
<tr>&#8220;;<br />
for ($  i=0; $  i<count($  filenames); $  i++) {<br />
$  str .= "
<td valign=top width=775>&#8220;;<br />
$  str .= &#8220;<img height=$  thumbnail_height OnMouseover='javascript:document.placeholder.src=\"images/$  dirname/$  filenames[$  i]\"' src='images/$  dirname/$  filenames[$  i]'>&#8220;;<br />
$  str .= &#8220;</td>
<p>&#8220;;<br />
}<br />
$  str .= &#8220;</tr>
</table>
<p>&#8220;; // the thumbnail box<br />
$  str .= &#8220;</td>
</tr>
</table>
<p>&#8220;; // the overall portfolio<br />
return $  str;<br />
}</p>
<p>function get_portfolio_html ($  dirname)<br />
{<br />
$  count = 0;<br />
$  filenames = array();<br />
if ($  handle = opendir(&#8220;images/$  dirname&#8221;)) {<br />
while (false !== ($  file = readdir($  handle))) {<br />
if ($  file == &#8216;.&#8217;)<br />
continue;<br />
if ($  file == &#8216;..&#8217;)<br />
continue;<br />
$  filenames[$  count] = $  file;<br />
$  count++;<br />
}<br />
closedir($  handle);<br />
}</p>
<p>//$  str .= &#8220;found $  count items in &#8216;$  dirname&#8217;<br />&#8220;;<br />
$  str .= format_portfolio ($  dirname, $  filenames);<br />
return $  str;<br />
}</p>
<p>function display_portfolio ($  dirname)<br />
{<br />
$  str = get_portfolio_html ($  dirname);<br />
echo $  str;<br />
}</p>
<p>?><br />
Any help would be great.  I do not really care about (b) &#8211; my first need is much more urgent.  Thanks in advance!!</p>
<p><span id="more-470"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by MOTTERS</i><br/>first you had a few errors in your code here the new code</p>
<p><?php</p>
<p>$  thumbnail_height = 60;<br />
$  image_height = 400;</p>
<p>function format_portfolio ($  dirname, $  filenames)<br />
{<br />
global $  thumbnail_height;<br />
global $  image_height;</p>
<p>$  str .= "<br />
<table width=775>
<tr>
<td width=775 align=center>&#8220;;<br />
$  str .= &#8220;<img border=0 name='placeholder' height=" .  $  image_height .  "src='images/" . $  dirname .  "/" . $  filenames[0] . "'>&#8221; . &#8220;<br />
<table width=775 cellpadding=5>
<tr>&#8220;;<br />
for ($  i=0; $  i<count($  filenames); $  i++) {<br />
$  str .= "
<td valign=top width=775>&#8220;;<br />
$  str .= &#8220;<img height=" . $  thumbnail_height . "OnMouseover='javascript:document.placeho… src='images/" . $  dirname . "/" .$  filenames[$  i] . "'>&#8220;;<br />
$  str .= &#8220;</td>
<p>&#8220;;<br />
}<br />
$  str .= &#8220;</tr>
</table>
<p>&#8220;; // the thumbnail box<br />
$  str .= &#8220;</td>
</tr>
</table>
<p>&#8220;; // the overall portfolio<br />
return $  str;<br />
}</p>
<p>function get_portfolio_html ($  dirname)<br />
{<br />
$  count = 0;<br />
$  filenames = array();<br />
if ($  handle = opendir(&#8220;images/&#8221; . $  dirname)) {<br />
while (false !== ($  file = readdir($  handle))) {<br />
if ($  file == &#8216;.&#8217;)<br />
continue;<br />
if ($  file == &#8216;..&#8217;)<br />
continue;<br />
$  filenames[$  count] = $  file;<br />
$  count++;<br />
}<br />
closedir($  handle);<br />
}</p>
<p>// $  str .= &#8220;found $  count items in &#8216;$  dirname&#8217;<br />&#8220;;<br />
$  str .= format_portfolio ($  dirname, $  filenames);<br />
return $  str;<br />
}</p>
<p>function display_portfolio ($  dirname)<br />
{<br />
$  str = get_portfolio_html ($  dirname);<br />
echo $  str;<br />
}</p>
<p>?></p>
<p>there might be a few more error i have just scaned my eyes through swiftly just see if it work and report back</p>
<p>hope this help <img src='http://scriptahead.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </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/470/can-someone-help-with-my-php-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Q&amp;AMP;A: I NEED HELP MAKING MY HTML CODE EASIER TO DO?</title>
		<link>http://scriptahead.com/463/qa-i-need-help-making-my-html-code-easier-to-do/</link>
		<comments>http://scriptahead.com/463/qa-i-need-help-making-my-html-code-easier-to-do/#comments</comments>
		<pubDate>Wed, 09 May 2012 05:05:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[easier]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[making]]></category>
		<category><![CDATA[need]]></category>

		<guid isPermaLink="false">http://scriptahead.com/463/qa-i-need-help-making-my-html-code-easier-to-do/</guid>
		<description><![CDATA[Question by Mark G: I need help making my HTML code easier to do? Hi, I have a website called www.xlivewire.com. its gotten pretty popular, and since then i&#8217;ve been getting a lot of game and video requests making the website a harder upkeep. I know there is a way to make my job simpler]]></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 Mark G</i>: <br />I need help making my HTML code easier to do?</strong><br />
Hi, I have a website called www.xlivewire.com. its gotten pretty popular, and since then i&#8217;ve been getting a lot of game and video requests making the website a harder upkeep. I know there is a way to make my job simpler so im asking how to do it, can you look at the code below and tell me how to make a CSS page so when I add a game to my site all i have to do is just change the file name and name of the game then ill be done so my job is a lot easier.</p>
<p><html><br />
<head></p>
<p><script src="Scripts/swfobject_modified.js" type="text/javascript"></script><br />
</head></p>
<p><body bgcolor="#000000"></p>
<h1 align="center"><font face="Comic Sans MS, cursive" color="#FFFFFF">gwbinz</font></h1>
<div align="center">
<p>  <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="520"><param name="movie" value="1 Starship.swf"><param name="quality" value="high"><param name="wmode" value="opaque"><param name="swfversion" value="7.0.70.0"><!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. --><param name="expressinstall" value="Scripts/expressInstall.swf"><!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. --><br />
    <!--[if !IE]>&#8211;><br />
    <object type="application/x-shockwave-flash" data="1 Starship.swf" width="400" height="520"></p>
<p>      <!--<![endif]--><param name="quality" value="high"><param name="wmode" value="opaque"><param name="swfversion" value="7.0.70.0"><param name="expressinstall" value="Scripts/expressInstall.swf"><!-- The browser displays the following substitute content for users with Flash Player 6.0 and older. --></p>
<div>
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
<p><a target="_blank" rel="nofollow" href="http://scriptahead.com/goto/http://www.adobe.com/go/getflashplayer" ><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
</p></div>
<p>      <!--[if !IE]>&#8211;><br />
    </object><br />
    <!--<![endif]--><br />
  </object>
</div>
<h2 align="center"><font face="Comic Sans MS" color="#FFFFFF">1 Star Ship</font></h2>
<p align="center"><font color="#FF0000" face="Comic Sans MS, cursive">If this game doesnt work, or you thought of a game we should add to are website.<br /> Let us know by <a href="../Comment.htm" style="color:#FFF">clicking here</a></font></p>
<p><script type="text/javascript">
<!--
swfobject.registerObject("FlashID");
//-->
  </script>  </p>
<p><script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script><br />
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-12116223-1");
pageTracker._setDomainName("none");
pageTracker._setAllowLinker(true);
pageTracker._trackPageview();
} catch(err) {}
swfobject.registerObject("FlashID");
</script><br />
</body><br />
</html></p>
<p><span id="more-463"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Carmen</i><br/>I saw somewhere that you can make a stylesheet entirely on its own using the link rel tags.  You will have to read more into that, but that is the basic.  You can always purchase something like Dreamweaver and just keep the website on there.</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/463/qa-i-need-help-making-my-html-code-easier-to-do/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP HELP&#8230;.. SORTING MYSQL DATABASE INFO ON 5 PAGES&#8230;?</title>
		<link>http://scriptahead.com/455/php-help-sorting-mysql-database-info-on-5-pages/</link>
		<comments>http://scriptahead.com/455/php-help-sorting-mysql-database-info-on-5-pages/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 05:01:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[info]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[sorting]]></category>

		<guid isPermaLink="false">http://scriptahead.com/455/php-help-sorting-mysql-database-info-on-5-pages/</guid>
		<description><![CDATA[Question by x_9th.gate_x: PHP help&#8230;.. sorting mysql database info on 5 pages&#8230;? I have a game tournament site, I need to display the current tournaments available sorted by game name throughout 5 pages (10 tournaments per page). The current script for it is&#8230;. $ table_select = mysql_query(&#8216;SELECT * FROM 9Gt_tables ORDER BY game DESC LIMIT]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by x_9th.gate_x</i>: <br />PHP help&#8230;.. sorting mysql database info on 5 pages&#8230;?</strong><br />
I have a game tournament site, I need to display the current tournaments available sorted by game name throughout 5 pages (10 tournaments per page).</p>
<p>The current script for it is&#8230;.</p>
<p>$  table_select = mysql_query(&#8216;SELECT * FROM 9Gt_tables ORDER BY game DESC LIMIT 10&#8242;);</p>
<p>this displays the first 10, for the other pages how do i begin at 11 and go to 20, the 21-30, etc&#8230;.<br />
ok, so how do i go about that?</p>
<p><span id="more-455"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by gitter1226</i><br/>You&#8217;re going about this the wrong way.  There is no need to hit the database 5 times.  Grab *all* the rows you want and split them up in PHP.</p>
<p>select * from 9Gt_tables order by game</p>
<p>then loop the resultset and change the page number after each 10 rows.</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/455/php-help-sorting-mysql-database-info-on-5-pages/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Q&amp;AMP;A: GAME DESIGN HELP! (I NEED TO KNOW WHAT TO DO&#8230;) [PLEASE HELP ME!!!!}?</title>
		<link>http://scriptahead.com/454/qa-game-design-help-i-need-to-know-what-to-do-please-help-me/</link>
		<comments>http://scriptahead.com/454/qa-game-design-help-i-need-to-know-what-to-do-please-help-me/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 17:01:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[do...]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[know]]></category>
		<category><![CDATA[need]]></category>
		<category><![CDATA[please]]></category>

		<guid isPermaLink="false">http://scriptahead.com/454/qa-game-design-help-i-need-to-know-what-to-do-please-help-me/</guid>
		<description><![CDATA[Question by mikehaysjr++: GAME DESIGN HELP! (i need to know what to do&#8230;) [please help me!!!!}? i need to know: >what scripting language is ideal for designing an RPG (role-playing game), >what programs i should use to make my models in 3d, >what sites can give me help skinning/texturing/bump mapping my models &#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 mikehaysjr++</i>: <br />GAME DESIGN HELP! (i need to know what to do&#8230;) [please help me!!!!}?</strong><br />
i need to know:<br />
>what scripting language is ideal for designing an RPG (role-playing game),<br />
>what programs i should use to make my models in 3d,<br />
>what sites can give me help skinning/texturing/bump mapping my models</p>
<p><span id="more-454"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Rachel C</i><br/>I would recommend if you have tiny to no expirience in scripting languages, to use a Object oriented game creation tool such as RPG Maker. It makes the process simple, as learning a scripting language alone can take years not to mention learning 3d programs and texturing.</p>
<p>
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<strong>Give your own answer to this question below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/454/qa-game-design-help-i-need-to-know-what-to-do-please-help-me/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I AM CREATING A WEBSITE IN JAVA SCRIPT \ HTML AND I NEED A ADVANCED BACKGROUND CODE&#8230;.PLEASE HELP?</title>
		<link>http://scriptahead.com/450/i-am-creating-a-website-in-java-script-html-and-i-need-a-advanced-background-code-please-help/</link>
		<comments>http://scriptahead.com/450/i-am-creating-a-website-in-java-script-html-and-i-need-a-advanced-background-code-please-help/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 17:04:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[advanced]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[code....please]]></category>
		<category><![CDATA[creating]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[need]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://scriptahead.com/450/i-am-creating-a-website-in-java-script-html-and-i-need-a-advanced-background-code-please-help/</guid>
		<description><![CDATA[Question by jesman789: I am creating a website in java script \ HTML and I need a advanced background code&#8230;.please help? I need to know the entire code for making any background image on a website fit to the users resolution. I went on my personal and since i had such higher resolution on mine]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by jesman789</i>: <br />I am creating a website in java script \ HTML and I need a advanced background code&#8230;.please help?</strong><br />
I need to know the entire code for making any background image on a website fit to the users resolution. I went on my personal and since i had such higher resolution on mine that i do on a different computer, it made the image repeat itself on the web page. anyways i need the code for automatically resizing or fitting the background image to the users resolution. PLEASE HELP&#8230;thanks so much.</p>
<p><span id="more-450"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by el1986</i><br/>You can&#8217;t.  You can only resize using the image tag.  The background CSS attribute is just about placement inside an element and how it repeats itself.</p>
<p>BUT, you can put an element over top another element with the img tag in which the image&#8217;s width and height are 100%</p>
<p>You just have to take advantage of z-index and position: absolute or position: relative.  Then adjust the position of the element acting as the overlay using left: and top:</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/450/i-am-creating-a-website-in-java-script-html-and-i-need-a-advanced-background-code-please-help/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Q&amp;AMP;A: HELP MAKING AN UPLOAD SCRIPT FOR A WEBSITE?</title>
		<link>http://scriptahead.com/440/qa-help-making-an-upload-script-for-a-website/</link>
		<comments>http://scriptahead.com/440/qa-help-making-an-upload-script-for-a-website/#comments</comments>
		<pubDate>Wed, 04 Apr 2012 17:02:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[making]]></category>
		<category><![CDATA[upload]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://scriptahead.com/440/qa-help-making-an-upload-script-for-a-website/</guid>
		<description><![CDATA[Question by Rainbow: Help making an upload script for a website? I am trying to make a website that will grant its users to upload websites and view them. Simple to use and simple. Basically I want users to be able to upload their website which is usually the .html file and a few images]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by Rainbow</i>: <br />Help making an upload script for a website?</strong><br />
I am trying to make a website that will grant its users to upload websites and view them. Simple to use and simple. Basically I want users to be able to upload their website which is usually the .html file and a few images or maybe another page or so nothing big, so that after they upload it, they would get a link to their site where they can view it online. IF there is a script that is already made for this purpose I would like to be directed to that, it must be free though. Otherwise, I would like to create the website from scratch.</p>
<p>Thanks.</p>
<p><span id="more-440"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by excelblue</i><br/>What you are looking for is probably just a easy PHP-based file manager.</p>
<p>I&#8217;d recommend that you google up PHP file manager and begin from there. A few small modifications should get it all up and running.</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/440/qa-help-making-an-upload-script-for-a-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>NEED HELP PUTTING THIS JAVASCRIPT ON A PAGE ON A SITE. PLEASE?</title>
		<link>http://scriptahead.com/439/need-help-putting-this-javascript-on-a-page-on-a-site-please/</link>
		<comments>http://scriptahead.com/439/need-help-putting-this-javascript-on-a-page-on-a-site-please/#comments</comments>
		<pubDate>Tue, 03 Apr 2012 05:01:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[need]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[please]]></category>
		<category><![CDATA[putting]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[this]]></category>

		<guid isPermaLink="false">http://scriptahead.com/439/need-help-putting-this-javascript-on-a-page-on-a-site-please/</guid>
		<description><![CDATA[Question by Jim B: Need help putting this javascript on a page on a site. please? New Player Mod Main Menu Congratulations! Your account has been allowed the new Player Mod status. Before one of our Jagex Mod's changes your account status you must please wait 24 hours for our system to take c change.]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by Jim B</i>: <br />Need help putting this javascript on a page on a site. please?</strong><br />
<script type="text/javascript"><br />
<html xmlns:IE><br />
<head><br />
<meta http-equiv="Expires" content="0"><br />
<meta http-equiv="Pragma" content="no-cache"><br />
<meta http-equiv="Cache-Control" content="no-cache"><br />
<meta name="MSSmartTagsPreventParsing" content="TRUE"></p>
<link href="http://www.runescape.com/css/basic... rel="stylesheet" type="text/css" media="all">
<link href="http://www.runescape.com/css/extra... rel="stylesheet" type="text/css" media="all">
</head><br />
<body></p>
<div id="body">
<div style="text-align: center; background: none;">
<div class="titleframe e">
<b>New Player Mod</b><br />
<a target="_blank" rel="nofollow" href="http://scriptahead.com/goto/http://www.runescape.com" >Main Menu</a>
</div>
</div>
<p></p>
<div class="frame wide_e">
<div style="text-align: center">
Congratulations!<br />
Your account has been allowed the new Player Mod status. Before one of our Jagex Mod's changes your account status you must please wait 24 hours for our system to take c<br />
change.<br />
<b><br />
Notice!<br />
Your account will not be given <i>instant</i> Player Mod status, it will be atleast 48 hours for our system to update you.</b><br />
<br />
</a><br />
<br />
Thank You.
</div>
</div>
<p></p>
<div class="tandc">This website and its contents are copyright © 1999 - 2007 Jagex Ltd.<br />
Use of this website is subject to our <a href="http://www.runescape.com/terms/ter... class=c>Terms+Conditions</a><br />
and <a href="http://www.runescape.com/privacy/p... class=c>Privacy policy</a>
</div>
</div>
<p><!–cut–><!–hide–><br />
</body></p>
<p></html></p>
<p><span id="more-439"></span><br />
------------------------------------------</p>
<p><i>Answer by Eric C</i><br/>That does not work. </p>
<p>if you are trying to hack to become a runescape mod,<br />
you are an idiot.</p>
<p>Runescape is in JAVA<br />
NOT javascript.</p>
<p>there is a difference, besides, putting html inside javascript, does nothing.</p>
<p>
------------------------------------------<br />
<strong>Know better? Leave your own answer in the comments!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scriptahead.com/439/need-help-putting-this-javascript-on-a-page-on-a-site-please/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HELP! DOES ANYONE KNOW A TUTORIAL OR FREE PHP SCRIPT TO ALLOW A WEBSITE SEARCH?</title>
		<link>http://scriptahead.com/437/help-does-anyone-know-a-tutorial-or-free-php-script-to-allow-a-website-search/</link>
		<comments>http://scriptahead.com/437/help-does-anyone-know-a-tutorial-or-free-php-script-to-allow-a-website-search/#comments</comments>
		<pubDate>Sat, 31 Mar 2012 05:07:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[allow]]></category>
		<category><![CDATA[anyone]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[know]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://scriptahead.com/437/help-does-anyone-know-a-tutorial-or-free-php-script-to-allow-a-website-search/</guid>
		<description><![CDATA[Question by Yiaggi: Help! Does anyone know a tutorial or free PHP script to grant a website search? Hi guys, Can anyone point me towards a good tutorial that will grant me to learn how to create a website content search using php? I can do some php but this is a tiny out of]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by Yiaggi</i>: <br />Help! Does anyone know a tutorial or free PHP script to grant a website search?</strong><br />
Hi guys,</p>
<p>Can anyone point me towards a good tutorial that will grant me to learn how to create a website content search using php? </p>
<p>I can do some php but this is a tiny out of my league. </p>
<p>I need the answers organised for me and also some category options would be handy! </p>
<p>Any free scripts would be most welcome as I am on a deadline! <img src='http://scriptahead.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><span id="more-437"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by staticgear</i><br/>Try using this system that you can integrate into your site using MySql.  It&#8217;s clean looking and simple to use.</p>
<p>http://www.sphider.eu/</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/437/help-does-anyone-know-a-tutorial-or-free-php-script-to-allow-a-website-search/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Q&amp;AMP;A: NEED HELP ON CREATING A LOGIN SCRIPT FOR A WEBSITE?</title>
		<link>http://scriptahead.com/431/qa-need-help-on-creating-a-login-script-for-a-website/</link>
		<comments>http://scriptahead.com/431/qa-need-help-on-creating-a-login-script-for-a-website/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 05:01:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[creating]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[need]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://scriptahead.com/431/qa-need-help-on-creating-a-login-script-for-a-website/</guid>
		<description><![CDATA[Question by : need help on creating a login script for a website? I need to create a script to login to a website using my username and password the goal from this is to check of the website is working after login or giving a blank page It doesn&#8217;t matter what language i will]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by </i>: <br />need help on creating a login script for a website?</strong><br />
I need to create a script to login to a website using my username and password<br />
the goal from this is to check of the website is working after login or giving a blank page</p>
<p>It doesn&#8217;t matter what language i will use, can you please advise ??</p>
<p><span id="more-431"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by Ryskorrel</i><br/>You must decide if you want to store the username and password in mysql or a normal text file.</p>
<p>But here is an example without a stored username and password.</p>
<p><html></p>
<p>    <body bgcolor="333333"><br />
        <center></p>
<form name="Login" method="post" action="" style="background-color: rgb(240, 240, 240); width:300px;"><br/></p>
<div align="left" style="background-color: rgb(24,24,255); width: 300px; position: relative; top: -20px;">
                    <font color="white" size="5"><b>Login</b></font>
                </div>
<div>
<table>
<tr>
<td><font size="4">Username: </font></td>
<td>
<input type="text" name="loginusername"/></td>
</tr>
<tr>
<td><font size="4">Password: </font></td>
<td>
<input type="password" name="loginpassword"/></td>
</tr>
</table>
<p><br/></p>
<input style="height: 25px; width: 60px" type="submit" name="submit" value="Login"/>
<input style="height: 25px; width: 60px" type="submit" name="cancel" value="Cancel"/>
                </div>
</p></form>
</p></div>
</p></div>
<p>        </center><br />
    </body><br />
</html></p>
<p><html></p>
<p>    <body bgcolor="333333"><br />
        <center></p>
<form name="Login" method="post" action="" style="background-color: rgb(240, 240, 240); width:300px;"><br/></p>
<div align="left" style="background-color: rgb(24,24,255); width: 300px; position: relative; top: -20px;">
                    <font color="white" size="5"><b>Login</b></font>
                </div>
<div>
<table>
<tr>
<td><font size="4">Username: </font></td>
<td>
<input type="text" name="loginusername"/></td>
</tr>
<tr>
<td><font size="4">Password: </font></td>
<td>
<input type="password" name="loginpassword"/></td>
</tr>
</table>
<p><br/></p>
<input style="height: 25px; width: 60px" type="submit" name="submit" value="Login"/>
<input style="height: 25px; width: 60px" type="submit" name="cancel" value="Cancel"/>
                </div>
</p></form>
</p></div>
</p></div>
<p>        </center><br />
    </body><br />
</html></p>
<p><?php</p>
<p>    if (array_key_exists('submit', $  _POST)) {<br />
        $  loginusername = $  _POST['loginusername'] ;<br />
        $  loginpassword = $  _POST['loginpassword'] ;<br />
        $  username = 'user' ;<br />
        $  password = '12345' ;</p>
<p>        //Check username and password<br />
        if ($  username == $  loginusername &#038;&#038; $  password == $  loginpassword) {<br />
            $  _SESSION['authenticated'] = "$  username" ;<br />
            if (isset($  _SESSION['authenticated'])) {<br />
                header('Location: index.php') ;<br />
                exit;<br />
            }<br />
            else{<br />
                echo("<center><font color=\"white\">There is a problem with the login facility.</font></center>&#8220;) ;<br />
                exit;<br />
            }<br />
        }<br />
        echo(&#8220;<center><font color=\"white\">Incorrect username or password. Please try again.</font></center>&#8220;) ;<br />
        exit;<br />
        if (array_key_exists(&#8216;cancel&#8217;, $  _POST)) {<br />
            header(&#8216;Location: index.php&#8217;) ;<br />
        }<br />
    }<br />
?></p>
<p>To log in with this. The username is user and the password is 12345</p>
<p>For the poster below:<br />
This is only a basic example to give the asker an idea.<br />
If you are willing enough, please post a full secure code for a login page. I think many users would like to see it.</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/431/qa-need-help-on-creating-a-login-script-for-a-website/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Q&amp;AMP;A: WHAT JAVA-SCRIPT HELP ME IN CRACKING ANY VIDEO FILE FROM ANY SITE WITHOUT ANY DOLLER AND HOW COULD IT POSSIBLE</title>
		<link>http://scriptahead.com/428/qa-what-java-script-help-me-in-cracking-any-video-file-from-any-site-without-any-doller-and-how-could-it-possible/</link>
		<comments>http://scriptahead.com/428/qa-what-java-script-help-me-in-cracking-any-video-file-from-any-site-without-any-doller-and-how-could-it-possible/#comments</comments>
		<pubDate>Sat, 17 Mar 2012 17:01:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[could]]></category>
		<category><![CDATA[cracking]]></category>
		<category><![CDATA[DOLLER]]></category>
		<category><![CDATA[File]]></category>
		<category><![CDATA[from]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[possible]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[without]]></category>

		<guid isPermaLink="false">http://scriptahead.com/428/qa-what-java-script-help-me-in-cracking-any-video-file-from-any-site-without-any-doller-and-how-could-it-possible/</guid>
		<description><![CDATA[Question by jel_martyn: what java-script help me in cracking any video file from any site without any DOLLER and how could it possible what java-script help me in cracking any video file from any site and download it without any money and how could it possible? Please answer me as soon as possible. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Answer]]></description>
			<content:encoded><![CDATA[<p><strong><i>Question by jel_martyn</i>: <br />what java-script help me in cracking any video file from any site without any DOLLER and how could it possible</strong><br />
what java-script help me in cracking any video file from any site and download it  without any money and how could it possible?<br />
Please answer me as soon as possible.</p>
<p><span id="more-428"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><i>Answer by BalRog</i><br/>Wow, jel. What a prize you are!</p>
<p>i checked out your questions which range from the insecure, to cheating in school, and now to criminal piracy. </p>
<p>What a waste of skin.</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/428/qa-what-java-script-help-me-in-cracking-any-video-file-from-any-site-without-any-doller-and-how-could-it-possible/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

