<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- Generated by YaBB on Sat, 19 May 2012 23:06:44 GMT -->
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://www.helpmewithperl.com/YaBB.pl?action=RSSrecent" rel="self" type="application/rss+xml" />
		<title>200 most Recent Topics - Help Me with Perl at HelpMeWithPerl.com</title>
		<link>http://www.helpmewithperl.com/YaBB.pl</link>
		<description>Help Me with Perl at HelpMeWithPerl.com</description>
		<language>en-us</language>

		<copyright>Help Me with Perl at HelpMeWithPerl.com</copyright>
		<lastBuildDate>Sat, 19 May 2012 23:06:44 GMT</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>YaBB 2.5 AE Revision: 1.29 </generator>
		<ttl>30</ttl>
		<item>
			<title>http://1chris.com/post/39/using-php-to-download-youtube-flvs/ Script update - update for submit</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1334846036/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/http://1chris.com/post/39/using-php-to-download-youtube-flvs/ Script update</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1334846036/0#0</guid>
			<pubDate>Thu, 19 Apr 2012 14:33:56 GMT</pubDate>
			<description> &#60;b&#62;Code:&#60;/b&#62;&#60;pre&#62;&#60;&#38;#63;php

class youtubegrabber&#123;

    var $youtube_video_url;
    var $test;
    var $final_flv_filename;
    var $cookies_path;
    var $curl_headers;
    var $flv_url;

    function __construct&#38;#40;$youtube_video_url, $final_flv_filename, $test = 0&#38;#41;&#123;
        $this&#38;#45;&#62;youtube_video_url = $youtube_video_url;
        $this&#38;#45;&#62;test = $test;
        $this&#38;#45;&#62;final_flv_filename = $final_flv_filename;
       
        $this&#38;#45;&#62;youtube_video_id = $this&#38;#45;&#62;get_youtube_video_id&#38;#40;&#38;#41;;
       
        $this&#38;#45;&#62;cookies_path = &#34;cookies&#38;#46;txt&#34;;
        $clear_cookies = $this&#38;#45;&#62;clear_cookies&#38;#40;&#38;#41;;
       
        $this&#38;#45;&#62;curl_headers = array&#38;#40;
        	&#34;Accept&#38;#45;Language&#38;#58; en&#38;#45;us&#34;,
        	&#34;User&#38;#45;Agent&#38;#58; Mozilla&#38;#47;5&#38;#46;0 &#38;#40;Windows; U; Windows NT 6&#38;#46;1; en&#38;#45;US; rv&#38;#58;1&#38;#46;9&#38;#46;2&#38;#46;15&#38;#41; Gecko&#38;#47;20110303 Firefox&#38;#47;3&#38;#46;6&#38;#46;15&#34;,
        	&#34;Connection&#38;#58; Keep&#38;#45;Alive&#34;,
        	&#34;Cache&#38;#45;Control&#38;#58; no&#38;#45;cache&#34;
        	&#38;#41;;
       
        $this&#38;#45;&#62;flv_url = $this&#38;#45;&#62;get_flv_url&#38;#40;&#38;#41;;
       
        $save_binary = $this&#38;#45;&#62;get_curl_binary&#38;#40;&#38;#41;;
        $clear_cookies = $this&#38;#45;&#62;clear_cookies&#38;#40;&#38;#41;;
   
    &#125;
   
    function get_youtube_video_id&#38;#40;&#38;#41;&#123;
        $thearray = explode&#38;#40;&#34;watch&#38;#63;v=&#34;, $this&#38;#45;&#62;youtube_video_url&#38;#41;;
        return $thearray&#38;#91;1&#38;#93;;
    &#125;
   
   
    function clear_cookies&#38;#40;&#38;#41;&#123;
   
        if&#38;#40;file_exists&#38;#40;$this&#38;#45;&#62;cookies_path&#38;#41;&#38;#41;&#123;
            unlink&#38;#40;$this&#38;#45;&#62;cookies_path&#38;#41;;
        &#125;
       
        $ourFileName = $this&#38;#45;&#62;cookies_path;
        $ourFileHandle = fopen&#38;#40;$ourFileName, &#39;w&#39;&#38;#41; or die&#38;#40;&#34;can&#39;t open file&#34;&#38;#41;;
        fclose&#38;#40;$ourFileHandle&#38;#41;;
       
    &#125;
   
    function get_flv_url&#38;#40;&#38;#41;&#123;
   
        $html = $this&#38;#45;&#62;curl_get_url&#38;#40;$this&#38;#45;&#62;youtube_video_url&#38;#41;;
       
      
        preg_match_all&#38;#40;&#34;&#38;#47;var&#38;#46;*&#38;#63;swf&#38;#46;*&#38;#63;=&#38;#46;*&#38;#63;&#38;#92;&#34;&#38;#40;&#38;#46;*&#38;#63;&#38;#41;watch&#38;#45;player&#38;#46;*&#38;#63;innerHTML&#38;#46;*&#38;#63;=&#38;#46;*&#38;#63;swf&#38;#47;is&#34;, $html, $matches&#38;#41;;
       
       
        $decoded = urldecode&#38;#40;$matches&#38;#91;1&#38;#93;&#38;#91;0&#38;#93;&#38;#41;;
        preg_match_all&#38;#40;&#34;&#38;#47;url=&#38;#40;&#38;#46;*&#38;#63;&#38;#41;&#38;#92;,&#38;#47;is&#34;, $decoded, $matches&#38;#41;;
        $matches = $matches&#38;#91;1&#38;#93;;
       
       
        for&#38;#40;$i = 0; $i &#60; count&#38;#40;$matches&#38;#41;; $i++&#38;#41;&#123;
            $test = explode&#38;#40;&#34;&#38;&#34;, $matches&#38;#91;$i&#38;#93;&#38;#41;;
            $matches&#38;#91;$i&#38;#93; = $test&#38;#91;0&#38;#93;;
            $matches&#38;#91;$i&#38;#93; = urldecode&#38;#40;$matches&#38;#91;$i&#38;#93;&#38;#41;;
        &#125;
       
      
        $final_flv_url = &#34;&#34;;
       
        foreach&#38;#40;$matches AS $this_url&#38;#41;&#123;
            $headers = $this&#38;#45;&#62;curl_get_headers&#38;#40;$this_url&#38;#41;;
            
            $headers = split&#38;#40;&#34;&#38;#92;n&#34;, trim&#38;#40;$headers&#38;#41;&#38;#41;;
            foreach&#38;#40;$headers as $line&#38;#41; &#123;
                if &#38;#40;strtok&#38;#40;$line, &#39;&#38;#58;&#39;&#38;#41; == &#39;Content&#38;#45;Type&#39;&#38;#41; &#123;
                    $parts = explode&#38;#40;&#34;&#38;#58;&#34;, $line&#38;#41;;
                    $content_type = strtolower&#38;#40;trim&#38;#40;$parts&#38;#91;1&#38;#93;&#38;#41;&#38;#41;;
                    if &#38;#40; $this&#38;#45;&#62;contains&#38;#40;&#34;video&#38;#47;x&#38;#45;flv&#34;, $content_type&#38;#41; &#38;#41;&#123;
                        $final_flv_url = $this_url;
                        return $final_flv_url;
                    &#125;
                &#125;
            &#125;
        &#125;
       
        return false;
       
    &#125;
   
    function curl_get_url&#38;#40;$url&#38;#41;&#123;
        $cookie_path = $this&#38;#45;&#62;cookies_path;
       
        $headers = $this&#38;#45;&#62;curl_headers;
       
       
        $ch = curl_init&#38;#40;&#38;#41;;
        &#38;#47;&#38;#47;$referer = &#39;http&#38;#58;&#38;#47;&#38;#47;www&#38;#46;google&#38;#46;com&#38;#47;search&#39;;
        curl_setopt&#38;#40;$ch, CURLOPT_HTTPHEA&#38;#068;ER, $headers&#38;#41;; &#38;#47;&#38;#47; this pretends this scraper to be browser client IE6 on Windows XP, of course you can pretend to be other browsers just you have to know the correct headers
        &#38;#47;&#38;#47;curl_setopt&#38;#40;$get, CURLOPT_REFERER, $referer&#38;#41;; &#38;#47;&#38;#47; lie to the server that we are some visitor who arrived here through google search
        curl_setopt&#38;#40;$ch, CURLOPT_URL, $url&#38;#41;;
        curl_setopt&#38;#40;$ch, CURLOPT_RETURNTRANSFER, 1&#38;#41;;
        &#38;#47;&#38;#47; set user agent
        &#38;#47;&#38;#47;curl_setopt&#38;#40;$ch, CURLOPT_USERAGENT, &#34;Mozilla&#38;#47;5&#38;#46;0 &#38;#40;Windows; U; Windows NT 6&#38;#46;1; en&#38;#45;US; rv&#38;#58;1&#38;#46;9&#38;#46;2&#38;#46;13&#38;#41; Gecko&#38;#47;20101203 Firefox&#38;#47;3&#38;#46;6&#38;#46;13&#34;&#38;#41;;
        curl_setopt&#38;#40;$ch, CURLOPT_BINARYTRANSFER, 1&#38;#41;;
        curl_setopt&#38;#40;$ch, CURLOPT_COOKIEJAR, $cookie_path&#38;#41;;
        curl_setopt&#38;#40;$ch, CURLOPT_COOKIEFILE, $cookie_path&#38;#41;;
        curl_setopt&#38;#40; $ch, CURLOPT_FOLLOWLOCATION, true &#38;#41;;
        curl_setopt&#38;#40; $ch, CURLOPT_CONNECTTIMEOUT, 5 &#38;#41;;
       
        $output = curl_exec&#38;#40;$ch&#38;#41;;
        $info = curl_getinfo&#38;#40;$ch&#38;#41;;
        curl_close&#38;#40;$ch&#38;#41;;
       
        return $output;
    &#125;
   
    function curl_get_headers&#38;#40;$url&#38;#41;&#123;
        $cookie_path = $this&#38;#45;&#62;cookies_path;
       
        $headers = $this&#38;#45;&#62;curl_headers;
       
        $ch = curl_init&#38;#40;&#38;#41;;
        &#38;#47;&#38;#47;$referer = &#39;http&#38;#58;&#38;#47;&#38;#47;www&#38;#46;google&#38;#46;com&#38;#47;search&#39;;
        curl_setopt&#38;#40;$ch, CURLOPT_HTTPHEA&#38;#068;ER, $headers&#38;#41;;
        curl_setopt&#38;#40;$ch, CURLOPT_URL, $url&#38;#41;;
        curl_setopt&#38;#40;$ch, CURLOPT_RETURNTRANSFER, 1&#38;#41;;
        curl_setopt&#38;#40;$ch, CURLOPT_HEA&#38;#068;ER, 1&#38;#41;;
        curl_setopt&#38;#40;$ch, CURLOPT_NOBO&#38;#068;Y, 1&#38;#41;;
        curl_setopt&#38;#40;$ch, CURLOPT_COOKIEJAR, $cookie_path&#38;#41;;
        curl_setopt&#38;#40;$ch, CURLOPT_COOKIEFILE, $cookie_path&#38;#41;;
        curl_setopt&#38;#40; $ch, CURLOPT_FOLLOWLOCATION, true &#38;#41;;
        curl_setopt&#38;#40; $ch, CURLOPT_CONNECTTIMEOUT, 5 &#38;#41;;
       
        $results = curl_exec&#38;#40;$ch&#38;#41;;
       
        return $results;
    &#125;
   
    function get_curl_binary&#38;#40;&#38;#41;&#123;
        $url = $this&#38;#45;&#62;flv_url;
        $cookie_path = $this&#38;#45;&#62;cookies_path;
        $headers = $this&#38;#45;&#62;curl_headers;
    	  $final_flv_filename = $this&#38;#45;&#62;final_flv_filename;
    	  
    	  $ch = curl_init&#38;#40;$url&#38;#41;;
    	  $fp = fopen&#38;#40;$final_flv_filename, &#34;w&#34;&#38;#41;;
    	  curl_setopt&#38;#40;$ch, CURLOPT_FILE, $fp&#38;#41;;
    	  curl_setopt&#38;#40;$ch, CURLOPT_BINARYTRANSFER, 1&#38;#41;;
    	  curl_setopt&#38;#40;$ch, CURLOPT_FOLLOWLOCATION, true &#38;#41;;
        curl_setopt&#38;#40;$ch, CURLOPT_COOKIEJAR, $cookie_path&#38;#41;;
        curl_setopt&#38;#40;$ch, CURLOPT_COOKIEFILE, $cookie_path&#38;#41;;
    	  curl_setopt&#38;#40;$ch, CURLOPT_HTTPHEA&#38;#068;ER, $headers&#38;#41;; &#38;#47;&#38;#47; this pretends this scraper to be browser client IE6 on Windows XP, of course you can pretend to be other browsers just you have to know the correct headers
    	  curl_exec&#38;#40;$ch&#38;#41;;
    	  curl_close&#38;#40;$ch&#38;#41;;
    	  fclose&#38;#40;$fp&#38;#41;;
    &#125;
   
    function contains&#38;#40;$substring, $string&#38;#41; &#123;
            $pos = strpos&#38;#40;$string, $substring&#38;#41;;
    
            if&#38;#40;$pos === false&#38;#41; &#123;
                    &#38;#47;&#38;#47; string needle NOT found in haystack
                    return false;
            &#125;
            else &#123;
                    &#38;#47;&#38;#47; string needle found in haystack
                    return true;
            &#125;
    
    &#125;



&#125;

&#38;#47;&#38;#47;$url = &#34;http&#38;#58;&#38;#47;&#38;#47;youtu&#38;#46;be&#38;#47;TZ355GkKzyQ&#34;;
&#38;#47;&#38;#47;$filename = &#34;test&#38;#46;flv&#34;;
&#38;#47;&#38;#47;$youtubegrabber = new youtubegrabber&#38;#40;$url, $filename, 0&#38;#41;;
&#38;#47;&#38;#47;echo &#34;Should be done&#38;#46;&#60;br&#62;&#34;;




if&#38;#40;isset&#38;#40;$_POST&#38;#91;&#39;submit&#39;&#38;#93;&#38;#41;&#38;#41;
&#123;

function youtubeI&#38;#068;&#38;#40;$url&#38;#41;&#123;
 	 $res = explode&#38;#40;&#34;v=&#34;,$url&#38;#41;;
	 if&#38;#40;isset&#38;#40;$res&#38;#91;1&#38;#93;&#38;#41;&#38;#41; &#123;
	 	$res1 = explode&#38;#40;&#39;&#38;&#39;,$res&#38;#91;1&#38;#93;&#38;#41;;
		if&#38;#40;isset&#38;#40;$res1&#38;#91;1&#38;#93;&#38;#41;&#38;#41;&#123;
			$res&#38;#91;1&#38;#93; = $res1&#38;#91;0&#38;#93;;
		&#125;
		$res1 = explode&#38;#40;&#39;#&#39;,$res&#38;#91;1&#38;#93;&#38;#41;;
		if&#38;#40;isset&#38;#40;$res1&#38;#91;1&#38;#93;&#38;#41;&#38;#41;&#123;
			$res&#38;#91;1&#38;#93; = $res1&#38;#91;0&#38;#93;;
		&#125;
	 &#125;
	 return substr&#38;#40;$res&#38;#91;1&#38;#93;,0,12&#38;#41;;
  	 return false;
 &#125;





function yTubeId&#38;#40;$url&#38;#41;&#123;       
return preg_replace&#38;#40;&#39;&#38;#40;&#38;#40;http&#38;#58;&#38;#47;&#38;#47;&#38;#41;&#38;#63;&#38;#40;www&#38;#46;&#38;#41;&#38;#63;&#38;#40;youtube&#38;#46;com&#124;youtu&#38;#46;be&#38;#41;&#38;#40;&#38;#47;v&#38;#47;&#124;&#38;#47;watch&#38;#92;&#38;#63;v=&#124;&#38;#47;&#38;#41;&#38;#40;&#38;#91;a&#38;#45;zA&#38;#45;Z0&#38;#45;9_&#38;#45;&#38;#93;*&#38;#41;&#38;#40;&#38;#46;*&#38;#41;&#38;#41;&#39;,&#34;$5&#34;,$url&#38;#41;;   

 &#125;




&#38;#47;&#38;#47;does Video exist or not that was submit&#38;#46;
$curl = curl_init&#38;#40;&#34;http&#38;#58;&#38;#47;&#38;#47;gdata&#38;#46;youtube&#38;#46;com&#38;#47;feeds&#38;#47;api&#38;#47;videos&#38;#47;&#34; &#38;#46; yTubeId&#38;#40;$url&#38;#41;&#38;#41;;
curl_setopt&#38;#40;$curl, CURLOPT_HEA&#38;#068;ER, true&#38;#41;;
curl_setopt&#38;#40;$curl, CURLOPT_RETURNTRANSFER, 1&#38;#41;;
curl_exec&#38;#40;$curl&#38;#41;;
$request = curl_getinfo&#38;#40;$curl&#38;#41;;
curl_close&#38;#40;$curl&#38;#41;;

$result = explode&#38;#40;&#34;;&#34;, $request&#38;#91;&#34;content_type&#34;&#38;#93;&#38;#41;;

if&#38;#40;$result&#38;#91;0&#38;#93; &#38;#33;= &#34;application&#38;#47;atom+xml&#34;&#38;#41;
&#123;

&#38;#47;&#38;#47;echo &#34; Video doesn&#39;t exist&#60;br&#62;&#34;;
&#38;#47;&#38;#47;echo &#39;&#60;a href=&#34;javascript&#38;#58; history&#38;#46;go&#38;#40;&#38;#45;1&#38;#41;&#34;&#62;Back&#60;&#38;#47;a&#62;&#39;;

&#38;#63;&#62;
&#60;form&#62;
&#60;input type=&#34;button&#34; value=&#34;Video &#38;#068;oesn&#39;t Exist Go Back to Previous Page&#34;
onClick=&#34;javascript&#38;#58; history&#38;#46;go&#38;#40;&#38;#45;1&#38;#41;&#34;&#62;
&#60;&#38;#47;form&#62;

&#60;&#38;#63;php

&#125; else &#123;

&#38;#47;&#38;#47;echo &#34;Video exists&#60;br&#62;&#34;;



 function getYouTubeIdFromURL&#38;#40;$url&#38;#41;
&#123;
  $url_string = parse_url&#38;#40;$url, PHP_URL_QUERY&#38;#41;;
  parse_str&#38;#40;$url_string, $args&#38;#41;;
  return isset&#38;#40;$args&#38;#91;&#39;v&#39;&#38;#93;&#38;#41; &#38;#63; $args&#38;#91;&#39;v&#39;&#38;#93; &#38;#58; false;
&#125;


$youtube_id = getYouTubeIdFromURL&#38;#40;&#34;$url&#34;&#38;#41;;





if &#38;#40;preg_match&#38;#40;&#39;%&#38;#40;&#38;#63;&#38;#58;youtube&#38;#92;&#38;#46;com&#38;#47;&#38;#40;&#38;#63;&#38;#58;user&#38;#47;&#38;#46;+&#38;#47;&#124;&#38;#40;&#38;#63;&#38;#58;v&#124;e&#38;#40;&#38;#63;&#38;#58;mbed&#38;#41;&#38;#63;&#38;#41;&#38;#47;&#124;&#38;#46;*&#38;#91;&#38;#63;&#38;&#38;#93;v=&#38;#41;&#124;youtu&#38;#92;&#38;#46;be&#38;#47;&#38;#41;&#38;#40;&#38;#91;&#38;#94;&#34;&#38;&#38;#63;&#38;#47; &#38;#93;&#123;11&#125;&#38;#41;%i&#39;, $url, $result&#38;#41;&#38;#41; &#123;
    $video_id1 = $result&#38;#91;1&#38;#93;;
&#125;
echo &#34;Video Id&#38;#58; &#34;;
echo $video_id1;
echo &#34;&#60;br&#62;&#34;;


$content = file_get_contents&#38;#40;&#34;http&#38;#58;&#38;#47;&#38;#47;youtube&#38;#46;com&#38;#47;get_video_info&#38;#63;video_id=&#34; &#38;#46; $video_id1&#38;#41;;
 parse_str&#38;#40;$content, $ytarr&#38;#41;;
echo &#34;Video Title&#38;#58; &#34;;
echo $ytarr&#38;#91;&#39;title&#39;&#38;#93;&#38;#46; &#34;&#60;br &#38;#47;&#62;&#34;;



$url    = htmlspecialchars&#38;#40;$_POST&#38;#91;&#39;url&#39;&#38;#93;&#38;#41;;
$url  = trim&#38;#40;$url&#38;#41;;
&#38;#47;&#38;#47;$url = $url;


$filename = $ytarr&#38;#91;&#39;title&#39;&#38;#93;&#38;#46;&#34;&#38;#46;flv&#34;;

if&#38;#40;&#38;#33;file_exists&#38;#40;$filename&#38;#41;&#38;#41;

&#123;
	echo &#39;&#60;font color=#990000&#62;&#60;br&#62;&#38;#068;ownloading&#38;#58;&#60;br&#62;&#60;&#38;#47;font&#62; &#39;&#38;#46;$filename;
$youtubegrabber = new youtubegrabber&#38;#40;$url, $filename, 0&#38;#41;;
&#38;#47;&#38;#47;echo &#34;Should be done&#38;#46;&#60;br&#62;&#34;;

echo&#39;
	&#60;link rel=&#34;stylesheet&#34; type=&#34;text&#38;#47;css&#34; href=&#34;style&#38;#46;css&#34;&#62;
&#60;script type=&#34;text&#38;#47;javascript&#34; src=&#34;flowplayer&#38;#47;flowplayer&#38;#45;3&#38;#46;2&#38;#46;6&#38;#46;min&#38;#46;js&#34;&#62;&#60;&#38;#47;script&#62;
				&#60;a href=&#34;&#39;&#38;#46;$filename&#38;#46;&#39;&#34;  id=&#34;player&#34;&#62; &#60;&#38;#47;a&#62;
				&#60;script&#62;
				flowplayer&#38;#40;&#34;player&#34;, &#34;flowplayer&#38;#47;flowplayer&#38;#45;3&#38;#46;2&#38;#46;7&#38;#46;swf&#34;&#38;#41;;
				&#60;&#38;#47;script&#62;&#39;;
&#38;#63;&#62;
&#60;&#38;#33;&#38;#068;OCTYPE html
  PUBLIC &#34;&#38;#45;&#38;#47;&#38;#47;W3C&#38;#47;&#38;#47;&#38;#068;T&#38;#068; XHTML 1&#38;#46;0 Transitional&#38;#47;&#38;#47;EN&#34;
  &#34;http&#38;#58;&#38;#47;&#38;#47;www&#38;#46;w3&#38;#46;org&#38;#47;TR&#38;#47;xhtml1&#38;#47;&#38;#068;T&#38;#068;&#38;#47;xhtml1&#38;#45;transitional&#38;#46;dtd&#34;&#62;
&#60;html xmlns=&#34;http&#38;#58;&#38;#47;&#38;#47;www&#38;#46;w3&#38;#46;org&#38;#47;1999&#38;#47;xhtml&#34; xml&#38;#58;lang=&#34;en&#34; lang=&#34;en&#34;&#62;
  &#60;head&#62;
    &#60;title&#62;Retrieving video details&#60;&#38;#47;title&#62;
    &#60;style&#62;
    img &#123;
      padding&#38;#58; 2px;
      margin&#38;#45;bottom&#38;#58; 15px;
      border&#38;#58; solid 1px silver;
    &#125;
    td &#123;
      vertical&#38;#45;align&#38;#58; top;
    &#125;
    &#60;&#38;#47;style&#62;
  &#60;&#38;#47;head&#62;
  &#60;body&#62;
  &#60;&#38;#63;php
  		function getYoutubeId&#38;#40;$ytURL&#38;#41;
		&#123;
			$url&#38;#068;ata = parse_url&#38;#40;$ytURL&#38;#41;;
			&#38;#47;&#38;#47;echo &#39;&#60;br&#62;&#39;&#38;#46;$url&#38;#068;ata&#38;#91;&#34;host&#34;&#38;#93;&#38;#46;&#39;&#60;br&#62;&#39;;
			if&#38;#40;$url&#38;#068;ata&#38;#91;&#34;host&#34;&#38;#93; == &#39;www&#38;#46;youtube&#38;#46;com&#39;&#38;#41; &#38;#47;&#38;#47; Check for valid youtube url
 			&#123;
				$ytvI&#38;#068;len = 11;	&#38;#47;&#38;#47; This is the length of YouTube&#39;s video I&#38;#068;s

				&#38;#47;&#38;#47; The I&#38;#068; string starts after &#34;v=&#34;, which is usually right after
				&#38;#47;&#38;#47; &#34;youtube&#38;#46;com&#38;#47;watch&#38;#63;&#34; in the URL
				$idStarts = strpos&#38;#40;$ytURL, &#34;&#38;#63;v=&#34;&#38;#41;;

				&#38;#47;&#38;#47; In case the &#34;v=&#34; is NOT right after the &#34;&#38;#63;&#34; &#38;#40;not likely, but I like to keep my
				&#38;#47;&#38;#47; bases covered&#38;#41;, it will be after an &#34;&#38;&#34;&#38;#58;
				if&#38;#40;$idStarts === FALSE&#38;#41;
					$idStarts = strpos&#38;#40;$ytURL, &#34;&#38;v=&#34;&#38;#41;;
				&#38;#47;&#38;#47; If still FALSE, URL doesn&#39;t have a vid I&#38;#068;
				if&#38;#40;$idStarts === FALSE&#38;#41;
					die&#38;#40;&#34;YouTube video I&#38;#068; not found&#38;#46; Please double&#38;#45;check your URL&#38;#46;&#34;&#38;#41;;

				&#38;#47;&#38;#47; Offset the start location to match the beginning of the I&#38;#068; string
				$idStarts +=3;

				&#38;#47;&#38;#47; Get the I&#38;#068; string and return it
				$ytvI&#38;#068; = substr&#38;#40;$ytURL, $idStarts, $ytvI&#38;#068;len&#38;#41;;

				return $ytvI&#38;#068;;
			&#125;
			else
			&#123;
				&#38;#47;&#38;#47;echo &#39;This is not a valid youtube video url&#38;#46; Please, give a valid url&#38;#46;&#38;#46;&#38;#46;&#39;;
				return 0;
			&#125;

		&#125;
   
   
    &#38;#47;&#38;#47; function to parse a video &#60;entry&#62;  function parseVideoEntry&#38;#40;$youtubeVideoI&#38;#068;&#38;#41;
    function parseVideoEntry&#38;#40;$video_id1&#38;#41;
    &#123;      
      $obj= new stdClass;
      
      &#38;#47;&#38;#47; set video data feed URL
    &#38;#47;&#38;#47;	$feedURL = &#39;http&#38;#58;&#38;#47;&#38;#47;gdata&#38;#46;youtube&#38;#46;com&#38;#47;feeds&#38;#47;api&#38;#47;videos&#38;#47;&#39; &#38;#46; $youtubeVideoI&#38;#068;;
$feedURL = &#39;http&#38;#58;&#38;#47;&#38;#47;gdata&#38;#46;youtube&#38;#46;com&#38;#47;feeds&#38;#47;api&#38;#47;videos&#38;#47;&#39; &#38;#46; $video_id1;

    	&#38;#47;&#38;#47; read feed into SimpleXML object
    	$entry = simplexml_load_file&#38;#40;$feedURL&#38;#41;;
      
      &#38;#47;&#38;#47; get nodes in media&#38;#58; namespace for media information
      $media = $entry&#38;#45;&#62;children&#38;#40;&#39;http&#38;#58;&#38;#47;&#38;#47;search&#38;#46;yahoo&#38;#46;com&#38;#47;mrss&#38;#47;&#39;&#38;#41;;
      $obj&#38;#45;&#62;title = $media&#38;#45;&#62;group&#38;#45;&#62;title;
      $obj&#38;#45;&#62;description = $media&#38;#45;&#62;group&#38;#45;&#62;description;
      
      &#38;#47;&#38;#47; get video player URL
      $attrs = $media&#38;#45;&#62;group&#38;#45;&#62;player&#38;#45;&#62;attributes&#38;#40;&#38;#41;;
      $obj&#38;#45;&#62;watchURL = $attrs&#38;#91;&#39;url&#39;&#38;#93;;
      
      &#38;#47;&#38;#47; get video thumbnail
      $attrs = $media&#38;#45;&#62;group&#38;#45;&#62;thumbnail&#38;#91;0&#38;#93;&#38;#45;&#62;attributes&#38;#40;&#38;#41;;
      $obj&#38;#45;&#62;thumbnailURL = $attrs&#38;#91;&#39;url&#39;&#38;#93;;
            
      &#38;#47;&#38;#47; get &#60;yt&#38;#58;duration&#62; node for video length
      $yt = $media&#38;#45;&#62;children&#38;#40;&#39;http&#38;#58;&#38;#47;&#38;#47;gdata&#38;#46;youtube&#38;#46;com&#38;#47;schemas&#38;#47;2007&#39;&#38;#41;;
      $attrs = $yt&#38;#45;&#62;duration&#38;#45;&#62;attributes&#38;#40;&#38;#41;;
      $obj&#38;#45;&#62;length = $attrs&#38;#91;&#39;seconds&#39;&#38;#93;;
      
      &#38;#47;&#38;#47; get &#60;yt&#38;#58;stats&#62; node for viewer statistics
      $yt = $entry&#38;#45;&#62;children&#38;#40;&#39;http&#38;#58;&#38;#47;&#38;#47;gdata&#38;#46;youtube&#38;#46;com&#38;#47;schemas&#38;#47;2007&#39;&#38;#41;;
      $attrs = $yt&#38;#45;&#62;statistics&#38;#45;&#62;attributes&#38;#40;&#38;#41;;
      $obj&#38;#45;&#62;viewCount = $attrs&#38;#91;&#39;viewCount&#39;&#38;#93;;
      
      &#38;#47;&#38;#47; get &#60;gd&#38;#58;rating&#62; node for video ratings
      $gd = $entry&#38;#45;&#62;children&#38;#40;&#39;http&#38;#58;&#38;#47;&#38;#47;schemas&#38;#46;google&#38;#46;com&#38;#47;g&#38;#47;2005&#39;&#38;#41;;
      if &#38;#40;$gd&#38;#45;&#62;rating&#38;#41; &#123;
        $attrs = $gd&#38;#45;&#62;rating&#38;#45;&#62;attributes&#38;#40;&#38;#41;;
        $obj&#38;#45;&#62;rating = $attrs&#38;#91;&#39;average&#39;&#38;#93;;
      &#125; else &#123;
        $obj&#38;#45;&#62;rating = 0;         
      &#125;
       
      &#38;#47;&#38;#47; get &#60;gd&#38;#58;comments&#62; node for video comments
      $gd = $entry&#38;#45;&#62;children&#38;#40;&#39;http&#38;#58;&#38;#47;&#38;#47;schemas&#38;#46;google&#38;#46;com&#38;#47;g&#38;#47;2005&#39;&#38;#41;;
      if &#38;#40;$gd&#38;#45;&#62;comments&#38;#45;&#62;feedLink&#38;#41; &#123;
        $attrs = $gd&#38;#45;&#62;comments&#38;#45;&#62;feedLink&#38;#45;&#62;attributes&#38;#40;&#38;#41;;
        $obj&#38;#45;&#62;commentsURL = $attrs&#38;#91;&#39;href&#39;&#38;#93;;
        $obj&#38;#45;&#62;commentsCount = $attrs&#38;#91;&#39;countHint&#39;&#38;#93;;
      &#125;

      return $obj;      
    &#125;   
   



	$youtubeVideoLink = $url;

	$videoId = $video_id1;

if&#38;#40;$videoId == &#39;0&#39;&#38;#41;
	&#123;
	echo &#39;This is not a valid youtube video url&#38;#46; Please, give a valid url&#38;#46;&#38;#46;&#38;#46;&#39;;
	&#125;
	else
	&#123;
		$videoInfo = parseVideoEntry&#38;#40;$videoId&#38;#41;;

		&#38;#47;&#38;#47; display main video record
    	echo &#34;&#60;br&#62;&#60;br&#62;&#60;table&#62;&#38;#92;n&#34;;
    	echo &#34;&#60;tr&#62;&#38;#92;n&#34;;
    	echo &#34;&#60;td&#62;&#60;a href=&#38;#92;&#34;&#123;$videoInfo&#38;#45;&#62;watchURL&#125;&#38;#92;&#34;&#62;
    	&#60;img src=&#38;#92;&#34;$videoInfo&#38;#45;&#62;thumbnailURL&#38;#92;&#34; width=&#38;#92;&#34;150&#38;#92;&#34; height=&#38;#92;&#34;150&#38;#92;&#34; alt=&#38;#92;&#34;$youtubeVideoLink&#38;#92;&#34; title=&#38;#92;&#34;$youtubeVideoLink&#38;#92;&#34;&#38;#47;&#62;&#60;&#38;#47;a&#62;&#60;&#38;#47;td&#62;&#60;br &#38;#47;&#62;&#38;#92;n&#34;;
    	echo &#39;&#60;br &#38;#47;&#62;&#60;br &#38;#47;&#62;&#39;;
	echo &#34;&#60;&#38;#47;table&#62;&#34;;
echo &#34;&#60;td&#62;&#60;br&#62;&#60;a href=&#38;#92;&#34;&#123;$videoInfo&#38;#45;&#62;watchURL&#125;&#38;#92;&#34;&#62;&#123;$videoInfo&#38;#45;&#62;title&#125;&#60;&#38;#47;a&#62;
    	&#60;br&#38;#47;&#62;&#38;#92;n&#34;;
    	echo sprintf&#38;#40;&#34;%0&#38;#46;2f&#34;, $videoInfo&#38;#45;&#62;length&#38;#47;60&#38;#41; &#38;#46; &#34; min&#38;#46; &#124; &#123;$videoInfo&#38;#45;&#62;rating&#125;
    	user rating &#124; &#123;$videoInfo&#38;#45;&#62;viewCount&#125; views&#60;br&#38;#47;&#62;&#38;#92;n&#34;;
    	echo $videoInfo&#38;#45;&#62;description &#38;#46; &#34;&#60;&#38;#47;td&#62;&#38;#92;n&#34;;
    	echo &#34;&#60;&#38;#47;tr&#62;&#38;#92;n&#34;;
    	&#38;#47;&#38;#47;echo &#34;&#60;&#38;#47;table&#62;&#34;;
   
    echo &#39;&#60;br&#62;&#60;br&#62;&#39;;
    	&#38;#47;&#38;#47; read &#39;video comments&#39; feed into SimpleXML object
    	&#38;#47;&#38;#47; parse and display each comment
    	if &#38;#40;$videoInfo&#38;#45;&#62;commentsURL &#38;&#38; $videoInfo&#38;#45;&#62;commentsCount &#62; 0&#38;#41;
    	&#123;
    	  $commentsFeed = simplexml_load_file&#38;#40;$videoInfo&#38;#45;&#62;commentsURL&#38;#41;;   
    	  echo &#34;&#60;tr&#62;&#60;td colspan=&#38;#92;&#34;2&#38;#92;&#34;&#62;&#60;h3&#62;&#34; &#38;#46; $commentsFeed&#38;#45;&#62;title &#38;#46;
    	  &#34;&#60;&#38;#47;h3&#62;&#60;&#38;#47;td&#62;&#60;&#38;#47;tr&#62;&#38;#92;n&#34;;
    	  
		echo &#34;&#60;tr&#62;&#60;td colspan=&#38;#92;&#34;2&#38;#92;&#34;&#62;&#60;ol&#62;&#38;#92;n&#34;;
	echo &#39;&#60;br&#62;&#60;h1&#62;Video Comments&#60;&#38;#47;h1&#62;&#60;br&#62;&#39;;
    	  foreach &#38;#40;$commentsFeed&#38;#45;&#62;entry as $comment&#38;#41;
    	  &#123;
        	echo &#34;&#60;li&#62;&#34; &#38;#46; $comment&#38;#45;&#62;content &#38;#46; &#34;&#60;&#38;#47;li&#62;&#38;#92;n&#34;;
    	  &#125;
    	  echo &#34;&#60;&#38;#47;ol&#62;&#60;&#38;#47;td&#62;&#60;&#38;#47;tr&#62;&#38;#92;n&#34;;
 	   &#125;
    	echo &#34;&#60;&#38;#47;table&#62;&#34;;
   
    	echo &#34;&#60;h2&#62;Basic Video Information&#60;&#38;#47;h2&#62;&#34;;
    	echo &#39;&#60;br&#62;&#39;;
    	echo &#39;&#60;b&#62;Title of video&#38;#58;&#60;&#38;#47;b&#62; &#39;&#38;#46;$videoInfo&#38;#45;&#62;title;
    	echo &#39;&#60;br&#62;&#60;br&#62;&#39;;
    	echo &#39;&#60;b&#62;Thumbnail link of video&#38;#58;&#60;&#38;#47;b&#62; &#39;&#38;#46;$videoInfo&#38;#45;&#62;thumbnailURL;
    	echo &#39;&#60;br&#62;&#60;br&#62;&#39;;
    	echo &#39;&#60;b&#62;Youtube video link&#38;#58;&#60;&#38;#47;b&#62; &#39;&#38;#46;$videoInfo&#38;#45;&#62;watchURL;   
    	echo &#39;&#60;br&#62;&#60;br&#62;&#39;;
    	echo &#39;&#60;b&#62;Video description&#38;#58;&#60;&#38;#47;b&#62; &#39;&#38;#46;$videoInfo&#38;#45;&#62;description;
    	echo &#39;&#60;br&#62;&#60;br&#62;&#39;;
    	echo &#39;&#60;b&#62;How many times video have seen&#38;#58;&#60;&#38;#47;b&#62; &#39;&#38;#46;$videoInfo&#38;#45;&#62;viewCount;
    	echo &#39;&#60;br&#62;&#60;br&#62;&#39;;
    	echo &#39;&#60;b&#62;Video length&#38;#40;in seconds&#38;#41;&#38;#58;&#60;&#38;#47;b&#62; &#39;&#38;#46;$videoInfo&#38;#45;&#62;length;
    	echo &#39;&#60;br&#62;&#60;br&#62;&#39;;
    	echo &#39;&#60;b&#62;Video rating&#38;#58;&#60;&#38;#47;b&#62; &#39;&#38;#46;$videoInfo&#38;#45;&#62;rating;
    &#125;
&#125;else&#123;

echo &#39;&#60;font color=#990000&#62;&#60;br&#62; Already &#38;#068;ownload&#38;#58; &#39;&#38;#46;$filename&#38;#46;&#39;&#60;br&#62;&#60;&#38;#47;font&#62;&#39;;
		echo&#39;&#60;script type=&#34;text&#38;#47;javascript&#34; src=&#34;flowplayer&#38;#47;flowplayer&#38;#45;3&#38;#46;2&#38;#46;2&#38;#46;min&#38;#46;js&#34;&#62;&#60;&#38;#47;script&#62;
		&#60;a href=&#34;&#39;&#38;#46;$filename&#38;#46;&#39;&#34;  id=&#34;player&#34;&#62; &#60;&#38;#47;a&#62;
		&#60;script&#62;
		flowplayer&#38;#40;&#34;player&#34;, &#34;flowplayer&#38;#47;flowplayer&#38;#45;3&#38;#46;2&#38;#46;2&#38;#46;swf&#34;&#38;#41;;
		&#60;&#38;#47;script&#62;&#39;;

&#125;
    &#38;#63;&#62;
  &#60;&#38;#47;body&#62;
&#60;&#38;#47;html&#62;

&#60;&#38;#63;php
&#125; &#38;#47;&#38;#47;Video doesn&#39;t exist
&#125;else&#123;
&#38;#63;&#62;
&#60;&#38;#63;php
$url    = htmlspecialchars&#38;#40;$_POST&#38;#91;&#39;url&#39;&#38;#93;&#38;#41;;

$msg=$_GET&#38;#91;&#39;msg&#39;&#38;#93;;





&#38;#63;&#62;

&#60;html&#62;

&#60;script type=&#34;text&#38;#47;javascript&#34;&#62;
var ray=&#123;
ajax&#38;#58;function&#38;#40;st&#38;#41;
	&#123;
		this&#38;#46;show&#38;#40;&#39;load&#39;&#38;#41;;
	&#125;,
show&#38;#58;function&#38;#40;el&#38;#41;
	&#123;
		this&#38;#46;getI&#38;#068;&#38;#40;el&#38;#41;&#38;#46;style&#38;#46;display=&#39;&#39;;
	&#125;,
getI&#38;#068;&#38;#58;function&#38;#40;el&#38;#41;
	&#123;
		return document&#38;#46;getElementById&#38;#40;el&#38;#41;;
	&#125;
&#125;
&#60;&#38;#47;script&#62;


&#60;style type=&#34;text&#38;#47;css&#34;&#62;
#load&#123;
position&#38;#58;absolute;
z&#38;#45;index&#38;#58;1;
border&#38;#58;3px double #999;
background&#38;#58;#f7f7f7;
width&#38;#58;300px;
height&#38;#58;300px;
margin&#38;#45;top&#38;#58;&#38;#45;150px;
margin&#38;#45;left&#38;#58;&#38;#45;150px;
top&#38;#58;50%;
left&#38;#58;50%;
text&#38;#45;align&#38;#58;center;
line&#38;#45;height&#38;#58;300px;
font&#38;#45;family&#38;#58;&#34;Trebuchet MS&#34;, verdana, arial,tahoma;
font&#38;#45;size&#38;#58;18pt;
&#125;
&#60;&#38;#47;style&#62;

&#60;script type=&#34;text&#38;#47;javascript&#34;&#62;
function checkURL&#38;#40;value&#38;#41; &#123;
  var urlregex = new RegExp&#38;#40;
        &#34;&#38;#94;&#38;#40;http&#38;#58;&#38;#92;&#38;#47;&#38;#92;&#38;#47;www&#38;#46;&#124;https&#38;#58;&#38;#92;&#38;#47;&#38;#92;&#38;#47;www&#38;#46;&#124;ftp&#38;#58;&#38;#92;&#38;#47;&#38;#92;&#38;#47;www&#38;#46;&#124;www&#38;#46;&#38;#41;&#123;1&#125;&#38;#40;&#38;#91;0&#38;#45;9A&#38;#45;Za&#38;#45;z&#38;#93;+&#38;#92;&#38;#46;&#38;#41;&#34;&#38;#41;;
  if&#38;#40;urlregex&#38;#46;test&#38;#40;value&#38;#41;&#38;#41;
  &#123;
    return&#38;#40;true&#38;#41;;
  &#125;
  return&#38;#40;false&#38;#41;;
&#125;
&#60;&#38;#47;script&#62;


&#60;script language=&#34;JavaScript&#34; type=&#34;text&#38;#47;javascript&#34;&#62; 
function urlCheck&#38;#40;url&#38;#41;&#123; 
	var regExp = &#38;#47;&#38;#94;&#38;#46;*&#38;#40;&#38;#40;youtu&#38;#46;be&#38;#92;&#38;#47;&#38;#41;&#124;&#38;#40;v&#38;#92;&#38;#47;&#38;#41;&#124;&#38;#40;&#38;#92;&#38;#47;u&#38;#92;&#38;#47;&#38;#92;w&#38;#92;&#38;#47;&#38;#41;&#124;&#38;#40;embed&#38;#92;&#38;#47;&#38;#41;&#124;&#38;#40;watch&#38;#92;&#38;#63;&#38;#41;&#38;#41;&#38;#92;&#38;#63;&#38;#63;v&#38;#63;=&#38;#63;&#38;#40;&#38;#91;&#38;#94;#&#38;#92;&#38;&#38;#92;&#38;#63;&#38;#93;*&#38;#41;&#38;#46;*&#38;#47;;
	var match = url&#38;#46;match&#38;#40;regExp&#38;#41;;
	if &#38;#40;match&#38;&#38;match&#38;#91;7&#38;#93;&#38;#46;length==11&#38;#41;&#123;
	   
  document&#38;#46;getElementById&#38;#40;&#34;check&#34;&#38;#41;&#38;#46;innerHTML = &#34;&#60;img src=&#39;check&#38;#46;gif&#39;&#62;&#38;nbsp;&#60;font color=green&#62;Valid url&#60;&#38;#47;font&#62;&#60;br &#38;#47;&#62;&#60;br &#38;#47;&#62;&#60;input type=&#39;submit&#39; value=&#39;Submit&#39; id=&#39;myButton&#39;&#62;&#34; 

	&#125;else&#123;
	   
   document&#38;#46;getElementById&#38;#40;&#34;check&#34;&#38;#41;&#38;#46;innerHTML = &#34;&#60;img src=&#39;uncheck&#38;#46;gif&#39;&#62;&#38;nbsp;&#38;nbsp;&#38;nbsp;&#60;font color=red&#62;Invalid url&#60;&#38;#47;font&#62;&#34; 

	&#125;
&#125;
&#60;&#38;#47;script&#62;


&#60;script type=&#34;text&#38;#47;javascript&#34;&#62;
function youtube_parser&#38;#40;url&#38;#41;&#123;
	var regExp = &#38;#47;&#38;#94;&#38;#46;*&#38;#40;&#38;#40;youtu&#38;#46;be&#38;#92;&#38;#47;&#38;#41;&#124;&#38;#40;v&#38;#92;&#38;#47;&#38;#41;&#124;&#38;#40;&#38;#92;&#38;#47;u&#38;#92;&#38;#47;&#38;#92;w&#38;#92;&#38;#47;&#38;#41;&#124;&#38;#40;embed&#38;#92;&#38;#47;&#38;#41;&#124;&#38;#40;watch&#38;#92;&#38;#63;&#38;#41;&#38;#41;&#38;#92;&#38;#63;&#38;#63;v&#38;#63;=&#38;#63;&#38;#40;&#38;#91;&#38;#94;#&#38;#92;&#38;&#38;#92;&#38;#63;&#38;#93;*&#38;#41;&#38;#46;*&#38;#47;;
	var match = url&#38;#46;match&#38;#40;regExp&#38;#41;;
	if &#38;#40;match&#38;&#38;match&#38;#91;7&#38;#93;&#38;#46;length==11&#38;#41;&#123;
	    return match&#38;#91;7&#38;#93;;
	&#125;else&#123;
	    alert&#38;#40;&#34;Url incorrecta&#34;&#38;#41;;
	&#125;
&#125;
&#60;&#38;#47;script&#62;



&#60;div id=&#34;load&#34;&#62;&#60;font color=&#34;red&#34;&#62;Up Loading&#38;#46;&#38;#46;&#38;#46; Please wait&#60;&#38;#47;font&#62;&#60;&#38;#47;div&#62;
&#60;form action=&#34;&#34; method=&#34;post&#34; onsubmit=&#34;return ray&#38;#46;ajax&#38;#40;&#38;#41;&#34;&#62;
 Url&#38;#58; &#60;input type=&#34;text&#34; size=&#34;100&#34; name=&#34;url&#34; onkeyup=&#34;urlCheck&#38;#40;this&#38;#46;value&#38;#41;;&#34;&#62;

&#60;span id=&#34;check&#34;&#62; 
 &#60;script&#62;   
  urlCheck&#38;#40;&#38;#41; 
 &#60;&#38;#47;script&#62; 
&#60;&#38;#47;span&#62;
&#60;br&#62;



&#60;&#38;#47;div&#62;
   

&#60;input type=&#39;hidden&#39; name=&#39;submit&#39; &#38;#47;&#62;

 &#60;&#38;#47;form&#62;

&#60;br&#62;&#60;br&#62;

Examples&#38;#58;&#60;br &#38;#47;&#62;
http&#38;#58;&#38;#47;&#38;#47;www&#38;#46;youtube&#38;#46;com&#38;#47;watch&#38;#63;v=TZ355GkKzyQ&#60;br &#38;#47;&#62;
http&#38;#58;&#38;#47;&#38;#47;www&#38;#46;youtube&#38;#46;com&#38;#47;watch&#38;#63;feature=player_detailpage&#38;v=TZ355GkKzyQ&#60;br &#38;#47;&#62;
http&#38;#58;&#38;#47;&#38;#47;www&#38;#46;youtube&#38;#46;com&#38;#47;watch&#38;#63;feature=player_detailpage&#38;v=TZ355GkKzyQ#t=25s&#60;br &#38;#47;&#62;
http&#38;#58;&#38;#47;&#38;#47;www&#38;#46;youtube&#38;#46;com&#38;#47;v&#38;#47;TZ355GkKzyQ&#38;#63;fs=1&#38;amp;hl=en_US&#38;amp;rel=0&#60;br &#38;#47;&#62;
http&#38;#58;&#38;#47;&#38;#47;www&#38;#46;youtube&#38;#46;com&#38;#47;embed&#38;#47;TZ355GkKzyQ&#38;#63;rel=0 &#60;br &#38;#47;&#62;
http&#38;#58;&#38;#47;&#38;#47;www&#38;#46;youtube&#38;#46;com&#38;#47;watch&#38;#63;v=TZ355GkKzyQ&#38;feature=feedrec_grec_index &#60;br &#38;#47;&#62;
http&#38;#58;&#38;#47;&#38;#47;youtu&#38;#46;be&#38;#47;TZ355GkKzyQ &#60;br &#38;#47;&#62;
http&#38;#58;&#38;#47;&#38;#47;www&#38;#46;youtube&#38;#46;com&#38;#47;watch&#38;#63;v=TZ355GkKzyQ#t=0m10s &#60;br &#38;#47;&#62;
http&#38;#58;&#38;#47;&#38;#47;www&#38;#46;youtube&#38;#46;com&#38;#47;user&#38;#47;winnracer#p&#38;#47;a&#38;#47;u&#38;#47;1&#38;#47;TZ355GkKzyQ &#60;br &#38;#47;&#62;

&#60;br&#62;&#60;br&#62;
&#60;br&#62;




&#60;&#38;#63;php
$pattern = &#39;&#38;#47;&#38;#46;*youtube&#38;#46;*&#38;#40;v=&#124;&#38;#92;&#38;#47;v&#38;#92;&#38;#47;&#38;#41;&#38;#40;&#38;#91;&#38;#94;&#38;&#38;#92;&#38;#47;&#38;#93;*&#38;#41;&#38;#46;*&#38;#47;i&#39;;
preg_match&#38;#40;$pattern, $url, $matches&#38;#41;;
$videoId = $matches&#38;#91;2&#38;#93;;

&#38;#63;&#62;

&#60;br&#62;
&#60;&#38;#47;html&#62;
&#60;&#38;#63;php

&#125;


&#38;#47;&#38;#47; The Regular Expression filter for hyper links
$reg_exUrl = &#34;&#38;#47;&#38;#40;http&#124;https&#124;ftp&#124;ftps&#38;#41;&#38;#92;&#38;#58;&#38;#92;&#38;#47;&#38;#92;&#38;#47;&#38;#91;a&#38;#45;zA&#38;#45;Z0&#38;#45;9&#38;#92;&#38;#45;&#38;#92;&#38;#46;&#38;#93;+&#38;#92;&#38;#46;&#38;#91;a&#38;#45;zA&#38;#45;Z&#38;#93;&#123;2,3&#125;&#38;#40;&#38;#92;&#38;#47;&#38;#92;S*&#38;#41;&#38;#63;&#38;#47;&#34;;

&#38;#47;&#38;#47; The Text you want to filter for urls
$text = $url;

&#38;#47;&#38;#47; Check if there is a url in the text if&#38;#40;preg_match&#38;#40;$reg_exUrl, $text, $url1&#38;#41;&#38;#41;
if&#38;#40;preg_match&#38;#40;$reg_exUrl, $text, $url&#38;#41;&#38;#41; &#123;

       &#38;#47;&#38;#47; make the urls hyper links    echo preg_replace&#38;#40;$reg_exUrl, &#39;&#60;br&#62;&#60;a href=&#34;&#39;&#38;#46;$url1&#38;#91;0&#38;#93;&#38;#46;&#39;&#34; rel=&#34;nofollow&#34;&#62;&#39;&#38;#46;$url1&#38;#91;0&#38;#93;&#38;#46;&#39;&#60;&#38;#47;a&#62;&#39;, $text&#38;#41;;

       echo preg_replace&#38;#40;$reg_exUrl, &#39;&#60;br&#62;&#60;br&#62;YouTube URL&#60;br&#62;&#60;a href=&#34;&#39;&#38;#46;$url&#38;#91;0&#38;#93;&#38;#46;&#39;&#34; rel=&#34;nofollow&#34;&#62;&#39;&#38;#46;$url&#38;#91;0&#38;#93;&#38;#46;&#39;&#60;&#38;#47;a&#62;&#39;, $text&#38;#41;;

&#125; else &#123;

       &#38;#47;&#38;#47; if no urls in the text just return the text
       &#38;#47;&#38;#47; echo &#34;&#60;br&#62;YouTube URL&#34;&#38;#46;$text&#38;#46;&#34;&#60;br&#62;&#34;;

&#125;
&#38;#63;&#62;

 

&#60;/pre&#62;&#60;br /&#62;&#60;br /&#62;&#60;br /&#62;you will need flowplayer around line 480</description>
		</item>
		<item>
			<title>General Discussions - looking</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1251159235/6#6</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/General Discussions</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1251159235/6#6</guid>
			<pubDate>Fri, 30 Sep 2011 03:47:08 GMT</pubDate>
			<description>His e-mail address is infoishsniffer.com</description>
		</item>
		<item>
			<title>Working Scripts - php mysql on form with dropdown Category and subCategory list</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1316546566/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/Working Scripts</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1316546566/0#0</guid>
			<pubDate>Tue, 20 Sep 2011 19:22:46 GMT</pubDate>
			<description>&#60;br /&#62;&#60;br /&#62; &#60;b&#62;Code:&#60;/b&#62;&#60;pre&#62; &#38;#63;&#62;
&#60;&#38;#33;&#38;#45;&#38;#45;category&#38;#45;&#38;#45;&#62;
&#60;tr&#62;
 &#60;tdwidth = 50%&#62;Category&#38;#58;&#60;&#38;#47;td&#62;
 &#60;td width = 50%&#62;
 &#60;&#38;#63;php
 $ddone = @mysql_query&#38;#40;&#34;SELECT id, name FROM myphpforum_category&#34;&#38;#41;;
 echo &#34;&#60;select name = &#39;maincat&#39;&#62;&#34;;
 while&#38;#40;$row = mysql_fetch_assoc&#38;#40;$ddone&#38;#41;&#38;#41;&#123;
 $catid = $row&#38;#91;&#39;id&#39;&#38;#93;;
 $catname = $row&#38;#91;&#39;name&#39;&#38;#93;;
 echo &#34;&#60;option value = &#38;#92;&#34;$catid&#38;#92;&#34;&#62; $catname &#60;&#38;#47;option&#62;&#34;;
&#38;#47;&#38;#47;&#38;#45;&#38;#45;category ends&#38;#45;&#38;#45;

 &#38;#47;&#38;#47;&#38;#45;&#38;#45;subcategory&#38;#45;&#38;#45;
 $ddtwo = @mysql_query&#38;#40;&#34;SELECT id,category,name FROM myphpforum_subcategory WHERE category = $catid&#34;&#38;#41;;
 &#38;#47;&#38;#47;echo &#34;&#60;select name = &#39;subcat&#39;&#62;&#34;;
 while&#38;#40;$now = mysql_fetch_assoc&#38;#40;$ddtwo&#38;#41;&#38;#41;&#123;
 $subcatid = $now&#38;#91;&#39;id&#39;&#38;#93;;
 $subcatcategory = $now&#38;#91;&#39;category&#39;&#38;#93;;
$subcatname = $now&#38;#91;&#39;name&#39;&#38;#93;;

 echo &#34;&#60;option value = &#38;#92;&#34;$subcatid&#38;#92;&#34;&#62;&#38;#45;&#38;#45;&#38;#45;&#38;#45;$subcatname&#60;&#38;#47;option&#62;&#34;;
 &#125;
&#125;
 echo &#34;&#60;&#38;#47;select&#62;&#34;;
 &#38;#63;&#62;
 &#60;&#38;#47;td&#62;
 &#60;&#38;#47;tr&#62;
&#60;br&#62;
&#60;&#38;#63;php
&#38;#47;&#38;#47;subcategory ends here

 

&#60;/pre&#62;</description>
		</item>
		<item>
			<title>onlinebookmarks - password reset php</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1312137310/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/onlinebookmarks</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1312137310/1#1</guid>
			<pubDate>Mon, 1 Aug 2011 12:58:20 GMT</pubDate>
			<description>thanks, I will give it a try...</description>
		</item>
		<item>
			<title>Form Mail for PERL - Problem with activation</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1298562926/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/Form Mail for PERL</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1298562926/0#0</guid>
			<pubDate>Thu, 24 Feb 2011 15:55:26 GMT</pubDate>
			<description>Hi there, I dont know if I am writing in a proper board but I have got a problem with activation, link i receive in email is not working... [url=http://www.helpmewithperl.com/?4b39b5d797397cf992ba40ffa09]http://www.helpmewithperl.com/?4b39b5d797397cf992ba40ffa09[/url], </description>
		</item>
		<item>
			<title>SSH Log Check -Help - Problem with activation</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1298482165/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/SSH Log Check -Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1298482165/1#1</guid>
			<pubDate>Wed, 23 Feb 2011 18:11:46 GMT</pubDate>
			<description>sorry for the trouble looks like you are activated. Let me know if you have any trouble. I do remove and block spammers. happy posting</description>
		</item>
		<item>
			<title>Looking for a script, Open Source, Freeware and others. - SliTaz</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1291315978/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/Looking for a script, Open Source, Freeware and others.</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1291315978/0#0</guid>
			<pubDate>Thu, 2 Dec 2010 18:52:58 GMT</pubDate>
			<description>Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1291315978&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;&#60;br /&#62;I will give an easy, fast, portable distro - Slitaz&#60;br /&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1291315978&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1291315978&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1291315978&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;</description>
		</item>
		<item>
			<title>JavaScript Help - Help with hover over and popup image</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1288189984/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/JavaScript Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1288189984/0#0</guid>
			<pubDate>Wed, 27 Oct 2010 14:33:04 GMT</pubDate>
			<description>I have a script that works.&#60;br /&#62;&#60;br /&#62; &#60;b&#62;Code:&#60;/b&#62;&#60;pre&#62;&#60;script type=&#34;text&#38;#47;javascript&#34;&#62;
var imgs1 = new Array&#38;#40;&#34;http&#38;#58;&#38;#47;&#38;#47;mysite&#38;#46;com&#38;#47;upload&#38;#47;2485&#38;#46;jpg&#34;,&#34;http&#38;#58;&#38;#47;&#38;#47;mysite&#38;#46;com&#38;#47;upload&#38;#47;3282&#38;#46;jpg&#34;&#38;#41;;
var lnks1 = new Array&#38;#40;&#34;http&#38;#58;&#38;#47;&#38;#47;mysite&#38;#46;com&#38;#47;index&#38;#46;pl&#38;#63;session_key=&#38;search_and_display_db_button=on&#38;db_id=2485&#38;query=retrieval&#34;,&#34;http&#38;#58;&#38;#47;&#38;#47;mysite&#38;#46;com&#38;#47;index&#38;#46;pl&#38;#63;session_key=&#38;search_and_display_db_button=on&#38;db_id=3282&#38;query=retrieval&#34;&#38;#41;;
var alt1 = new Array&#38;#40;&#34;3 bedroom 1 bath on 3&#38;#46;5 acres $69,000&#38;#46;00 Price Reduced&#38;#33;&#34;,&#34; 2 bed&#38;#47;1 bath House 450&#38;#47;mo 350&#38;#47;dep&#38;#45;&#38;#45;will do Section 8&#34;&#38;#41;;
var imgsa = new Array&#38;#40;&#34;3 bedroom 1 bath on 3&#38;#46;5 acres &#38;#92;$69,000&#38;#46;00 &#60;font color=#ff0000 size=3&#62;&#60;b&#62;&#60;i&#62;Price Reduced&#38;#33;&#60;&#38;#47;i&#62;&#60;&#38;#47;b&#62;&#60;&#38;#47;font&#62;&#34;,&#34;2 bed&#38;#47;1 bath House 450&#38;#47;mo 350&#38;#47;dep&#38;#45;&#38;#45;will do Section 8&#34;&#38;#41;;

var currentAd1 = 0;
var imgCt1 = 2;
function cycle1&#38;#40;&#38;#41; &#123;
 &#160;if &#38;#40;currentAd1 == imgCt1&#38;#41; &#123;
 &#160; &#160;currentAd1 = 0;
 &#160;&#125;
var banner1 = document&#38;#46;getElementById&#38;#40;&#39;adBanner1&#39;&#38;#41;;
var banner11 = document&#38;#46;getElementById&#38;#40;&#39;adBanner11&#39;&#38;#41;;
var link1 = document&#38;#46;getElementById&#38;#40;&#39;adLink1&#39;&#38;#41;;
banner1&#38;#46;src=imgs1&#38;#91;currentAd1&#38;#93;
 &#160;banner1&#38;#46;alt=alt1&#38;#91;currentAd1&#38;#93;
 &#160;document&#38;#46;getElementById&#38;#40;&#39;adLink1&#39;&#38;#41;&#38;#46;href=lnks1&#38;#91;currentAd1&#38;#93;
 &#160;document&#38;#46;getElementById&#38;#40;&#39;adLinka&#39;&#38;#41;&#38;#46;innerHTML = imgsa&#38;#91;currentAd1&#38;#93;;
currentAd1++;
&#125;
 &#160;window&#38;#46;setInterval&#38;#40;&#34;cycle1&#38;#40;&#38;#41;&#34;,5000&#38;#41;;
&#60;&#38;#47;script&#62;
&#60;b&#62;&#60;a&#34; id=&#34;adLinka&#34; target=&#34;_top&#34;&#62;3 bedroom 1 bath on 3&#38;#46;5 acres &#38;#92;$69,000&#38;#46;00 &#60;font color=#ff0000 size=3&#62;&#60;b&#62;&#60;i&#62;Price Reduced&#38;#33;&#60;&#38;#47;i&#62;&#60;&#38;#47;b&#62;&#60;&#38;#47;font&#62;&#60;&#38;#47;a&#62;
&#60;&#38;#47;b&#62;&#60;br&#62;

&#60;a href=&#34;http&#38;#58;&#38;#47;&#38;#47;mysite&#38;#46;com&#38;#47;index&#38;#46;pl&#38;#63;session_key=&#38;search_and_display_db_button=on&#38;db_id=2485&#38;query=retrieval&#34;&#34; id=&#34;adLink1&#34; target=&#34;_top&#34;&#62;
&#60;img src=&#34;http&#38;#58;&#38;#47;&#38;#47;mysite&#38;#46;com&#38;#47;upload&#38;#47;2485&#38;#46;jpg&#34; id=&#34;adBanner1&#34; border=&#34;0&#34; width=&#34;120&#34; height=&#34;90&#34;&#62;&#60;&#38;#47;a&#62;

 

&#60;/pre&#62;&#60;br /&#62;&#60;br /&#62;i am trying to change so that I have a hover over with photo it works on 1st banner but has same photo on 2nd banner thanks for the help&#60;br /&#62;&#60;br /&#62;here is what I have&#60;br /&#62;&#60;br /&#62;&#60;br /&#62; &#60;b&#62;Code:&#60;/b&#62;&#60;pre&#62;&#60;script type=&#34;text&#38;#47;javascript&#34;&#62;
var imgs1 = new Array&#38;#40;&#34;http&#38;#58;&#38;#47;&#38;#47;mysite&#38;#46;com&#38;#47;upload&#38;#47;2485&#38;#46;jpg&#34;,&#34;http&#38;#58;&#38;#47;&#38;#47;mysite&#38;#46;com&#38;#47;upload&#38;#47;3282&#38;#46;jpg&#34;&#38;#41;;
var lnks1 = new Array&#38;#40;&#34;http&#38;#58;&#38;#47;&#38;#47;mysite&#38;#46;com&#38;#47;index&#38;#46;pl&#38;#63;session_key=&#38;search_and_display_db_button=on&#38;db_id=2485&#38;query=retrieval&#34;,&#34;http&#38;#58;&#38;#47;&#38;#47;mysite&#38;#46;com&#38;#47;index&#38;#46;pl&#38;#63;session_key=&#38;search_and_display_db_button=on&#38;db_id=3282&#38;query=retrieval&#34;&#38;#41;;
var alt1 = new Array&#38;#40;&#34;3 bedroom 1 bath on 3&#38;#46;5 acres $69,000&#38;#46;00 Price Reduced&#38;#33;&#34;,&#34; 2 bed&#38;#47;1 bath House 450&#38;#47;mo 350&#38;#47;dep&#38;#45;&#38;#45;will do Section 8&#34;&#38;#41;;
var imgsa = new Array&#38;#40;&#34;3 bedroom 1 bath on 3&#38;#46;5 acres &#38;#92;$69,000&#38;#46;00 &#60;font color=#ff0000 size=3&#62;&#60;b&#62;&#60;i&#62;Price Reduced&#38;#33;&#60;&#38;#47;i&#62;&#60;&#38;#47;b&#62;&#60;&#38;#47;font&#62;&#34;,&#34;2 bed&#38;#47;1 bath House 450&#38;#47;mo 350&#38;#47;dep&#38;#45;&#38;#45;will do Section 8&#34;&#38;#41;;

var currentAd1 = 0;
var imgCt1 = 2;
function cycle1&#38;#40;&#38;#41; &#123;
 &#160;if &#38;#40;currentAd1 == imgCt1&#38;#41; &#123;
 &#160; &#160;currentAd1 = 0;
 &#160;&#125;
var banner1 = document&#38;#46;getElementById&#38;#40;&#39;adBanner1&#39;&#38;#41;;
var banner11 = document&#38;#46;getElementById&#38;#40;&#39;adBanner11&#39;&#38;#41;;
var link1 = document&#38;#46;getElementById&#38;#40;&#39;adLink1&#39;&#38;#41;;
banner1&#38;#46;src=imgs1&#38;#91;currentAd1&#38;#93;
 &#160;banner1&#38;#46;alt=alt1&#38;#91;currentAd1&#38;#93;
 &#160;document&#38;#46;getElementById&#38;#40;&#39;adLink1&#39;&#38;#41;&#38;#46;href=lnks1&#38;#91;currentAd1&#38;#93;
 &#160;document&#38;#46;getElementById&#38;#40;&#39;adLinka&#39;&#38;#41;&#38;#46;innerHTML = imgsa&#38;#91;currentAd1&#38;#93;;
currentAd1++;
&#125;
 &#160;window&#38;#46;setInterval&#38;#40;&#34;cycle1&#38;#40;&#38;#41;&#34;,5000&#38;#41;;
&#60;&#38;#47;script&#62;
&#60;b&#62;&#60;a&#34; id=&#34;adLinka&#34; target=&#34;_top&#34;&#62;3 bedroom 1 bath on 3&#38;#46;5 acres &#38;#92;$69,000&#38;#46;00 &#60;font color=#ff0000 size=3&#62;&#60;b&#62;&#60;i&#62;Price Reduced&#38;#33;&#60;&#38;#47;i&#62;&#60;&#38;#47;b&#62;&#60;&#38;#47;font&#62;&#60;&#38;#47;a&#62;
&#60;&#38;#47;b&#62;&#60;br&#62;

&#60;a href=&#34;http&#38;#58;&#38;#47;&#38;#47;mysite&#38;#46;com&#38;#47;index&#38;#46;pl&#38;#63;session_key=&#38;search_and_display_db_button=on&#38;db_id=2485&#38;query=retrieval&#34; id=&#34;adLink1&#34; target=&#34;_top&#34; onmouseover=&#34;Tip&#38;#40;&#39;&#60;img src=&#38;quot;http&#38;#58;&#38;#47;&#38;#47;mysite&#38;#46;com&#38;#47;upload&#38;#47;2485&#38;#46;jpg&#38;quot; id=&#38;quot;adBanner1&#38;quot; border=&#38;quot;0&#38;quot; width=&#38;quot;120&#38;quot; height=&#38;quot;90&#38;quot;&#62;&#39;&#38;#41;&#34; onmouseout=&#34;UnTip&#38;#40;&#38;#41;&#34; id=&#34;adBanner1&#34;&#62;
&#60;img src=&#34;http&#38;#58;&#38;#47;&#38;#47;mysite&#38;#46;com&#38;#47;upload&#38;#47;2485&#38;#46;jpg&#34; id=&#34;adBanner1&#34; border=&#34;0&#34; width=&#34;120&#34; height=&#34;90&#34;&#62;&#60;&#38;#47;a&#62;

 

&#60;/pre&#62;&#60;br /&#62;&#60;br /&#62;&#60;br /&#62;here is the part of the code I think is giveing me trouble&#60;br /&#62;&#60;br /&#62;&#60;br /&#62; &#60;b&#62;Code:&#60;/b&#62;&#60;pre&#62;&#60;a href=&#34;http&#38;#58;&#38;#47;&#38;#47;mysite&#38;#46;com&#38;#47;index&#38;#46;pl&#38;#63;session_key=&#38;search_and_display_db_button=on&#38;db_id=2485&#38;query=retrieval&#34; id=&#34;adLink1&#34; target=&#34;_top&#34; onmouseover=&#34;Tip&#38;#40;&#39;&#60;img src=&#38;quot;http&#38;#58;&#38;#47;&#38;#47;mysite&#38;#46;com&#38;#47;upload&#38;#47;2485&#38;#46;jpg&#38;quot; id=&#38;quot;adBanner1&#38;quot; border=&#38;quot;0&#38;quot; width=&#38;quot;120&#38;quot; height=&#38;quot;90&#38;quot;&#62;&#39;&#38;#41;&#34; onmouseout=&#34;UnTip&#38;#40;&#38;#41;&#34; id=&#34;adBanner1&#34;&#62;

 

&#60;/pre&#62;</description>
		</item>
		<item>
			<title>onlinebookmarks - new m</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1279342655/3#3</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/onlinebookmarks</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1279342655/3#3</guid>
			<pubDate>Mon, 19 Jul 2010 19:55:45 GMT</pubDate>
			<description>yes it&#39;s me. I think I signed up whe we were working on the register.php&#60;br /&#62;&#60;br /&#62;</description>
		</item>
		<item>
			<title>onlinebookmarks - register.php</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1267149125/18#18</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/onlinebookmarks</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1267149125/18#18</guid>
			<pubDate>Fri, 23 Apr 2010 14:18:33 GMT</pubDate>
			<description> Table structure for table `user`&#60;br /&#62;&#60;br /&#62;&#60;br /&#62;CREATE TABLE IF NOT EXISTS `user` (&#60;br /&#62; &#160;`username` varchar(50) NOT NULL DEFAULT &#39;&#39;,&#60;br /&#62; &#160;`password` varchar(50) NOT NULL DEFAULT &#39;&#39;,&#60;br /&#62; &#160;`email` varchar(50) NOT NULL,&#60;br /&#62; &#160;`admin` enum(&#39;0&#39;,&#39;1&#39;) NOT NULL DEFAULT &#39;0&#39;,&#60;br /&#62; &#160;`language` varchar(20) NOT NULL DEFAULT &#39;english&#39;,&#60;br /&#62; &#160;`root_folder_name` varchar(50) NOT NULL DEFAULT &#39;My Bookmarks&#39;,&#60;br /&#62; &#160;`column_width_folder` smallint(3) NOT NULL DEFAULT &#39;350&#39;,&#60;br /&#62; &#160;`column_width_bookmark` smallint(3) NOT NULL DEFAULT &#39;0&#39;,&#60;br /&#62; &#160;`table_height` smallint(3) NOT NULL DEFAULT &#39;450&#39;,&#60;br /&#62; &#160;`confirm_delete` enum(&#39;0&#39;,&#39;1&#39;) NOT NULL DEFAULT &#39;1&#39;,&#60;br /&#62; &#160;`open_new_window` enum(&#39;0&#39;,&#39;1&#39;) NOT NULL DEFAULT &#39;1&#39;,&#60;br /&#62; &#160;`show_bookmark_description` enum(&#39;0&#39;,&#39;1&#39;) NOT NULL DEFAULT &#39;1&#39;,&#60;br /&#62; &#160;`show_bookmark_icon` enum(&#39;0&#39;,&#39;1&#39;) NOT NULL DEFAULT &#39;1&#39;,&#60;br /&#62; &#160;`show_column_date` enum(&#39;0&#39;,&#39;1&#39;) NOT NULL DEFAULT &#39;1&#39;,&#60;br /&#62; &#160;`date_format` varchar(10) NOT NULL DEFAULT &#39;m.d.Y&#39;,&#60;br /&#62; &#160;`show_column_edit` enum(&#39;0&#39;,&#39;1&#39;) NOT NULL DEFAULT &#39;1&#39;,&#60;br /&#62; &#160;`show_column_move` enum(&#39;0&#39;,&#39;1&#39;) NOT NULL DEFAULT &#39;1&#39;,&#60;br /&#62; &#160;`show_column_delete` enum(&#39;0&#39;,&#39;1&#39;) NOT NULL DEFAULT &#39;1&#39;,&#60;br /&#62; &#160;`fast_folder_minus` enum(&#39;0&#39;,&#39;1&#39;) NOT NULL DEFAULT &#39;1&#39;,&#60;br /&#62; &#160;`fast_folder_plus` enum(&#39;0&#39;,&#39;1&#39;) NOT NULL DEFAULT &#39;1&#39;,&#60;br /&#62; &#160;`fast_symbol` enum(&#39;0&#39;,&#39;1&#39;) NOT NULL DEFAULT &#39;1&#39;,&#60;br /&#62; &#160;`simple_tree_mode` enum(&#39;0&#39;,&#39;1&#39;) NOT NULL DEFAULT &#39;0&#39;,&#60;br /&#62; &#160;`personid` int(11) NOT NULL AUTO_INCREMENT,&#60;br /&#62; &#160;`firstname` varchar(50) DEFAULT NULL,&#60;br /&#62; &#160;`lastname` varchar(50) DEFAULT NULL,&#60;br /&#62; &#160;`notes` text,&#60;br /&#62; &#160;`accessid` int(11) DEFAULT NULL,&#60;br /&#62; &#160;`active` tinyint(1) unsigned DEFAULT &#39;1&#39;,&#60;br /&#62; &#160;`canceldate` date DEFAULT NULL,&#60;br /&#62; &#160;`name` varchar(20) DEFAULT NULL,&#60;br /&#62; &#160;`show_public` enum(&#39;0&#39;,&#39;1&#39;) NOT NULL DEFAULT &#39;1&#39;,&#60;br /&#62; &#160;`timestamp` text NOT NULL,&#60;br /&#62; &#160;`email1` varchar(50) NOT NULL,&#60;br /&#62; &#160;PRIMARY KEY (`personid`),&#60;br /&#62; &#160;UNIQUE KEY `personid` (`personid`),&#60;br /&#62; &#160;UNIQUE KEY `id` (`username`),&#60;br /&#62; &#160;KEY `personid_2` (`personid`),&#60;br /&#62; &#160;KEY `accessid_2` (`accessid`)&#60;br /&#62;) ENGINE=MyISAM &#160;DEFAULT CHARSET=latin1 AUTO_INCREMENT=75 ;&#60;br /&#62;</description>
		</item>
		<item>
			<title>PHP Forum - you can review the beta demo here Code comming soon</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1271879260/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/PHP Forum</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1271879260/0#0</guid>
			<pubDate>Wed, 21 Apr 2010 19:47:40 GMT</pubDate>
			<description>&#60;br /&#62;   beta demo &#60;br /&#62;--------------------------------------------------------------------------------&#60;br /&#62;&#60;br /&#62;you can review the beta demo here&#60;br /&#62;&#60;br /&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1271879260&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;&#60;br /&#62;release comming soon&#60;br /&#62;&#60;br /&#62;&#60;br /&#62;your thoughts are welcome </description>
		</item>
		<item>
			<title>onlinebookmarks - antispam</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1269588853/16#16</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/onlinebookmarks</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1269588853/16#16</guid>
			<pubDate>Sun, 11 Apr 2010 22:21:58 GMT</pubDate>
			<description>&#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?num=1269588853/15#15&#34;&#62;webgid wrote&#60;/a&#62; on Apr 11&#60;sup&#62;th&#60;/sup&#62;, 2010 at 12:26am:&#60;br /&#62;&#60;div&#62;with the form on ajax I figured out, screwed, but&#60;br /&#62; &#60;b&#62;Quote:&#60;/b&#62;&#60;br /&#62;&#60;div&#62;I would like to ask you for help, tell me how you can change the title page (&#60;title&#62; ...&#60;/ title&#62;) for each user. For example so &#60;title&#62; username ...&#60;/ title&#62;, or even how it .. Because during this time in my database got a lot of useful bookmarks, but with standard headings to find something via search engines, people can not. Here, for example page - Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1269588853&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;I tried bunal variable through GET_ but was not able to understand how it should be .. &#60;br /&#62; &#60;/div&#62;&#60;br /&#62;may suggest that some of this? &#160;&#60;/div&#62;&#60;br /&#62;&#60;br /&#62;&#60;br /&#62;did you get it to work?</description>
		</item>
		<item>
			<title>onlinebookmarks - rss feed for onlinebookmarks</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1269793419/6#6</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/onlinebookmarks</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1269793419/6#6</guid>
			<pubDate>Thu, 1 Apr 2010 12:24:04 GMT</pubDate>
			<description>yes you can use something like below if I make a new bookmark then it shows date and time as 5 hours.&#60;br /&#62;&#60;br /&#62;&#60;!--sample if you have comments page--&#62;&#60;br /&#62;&#60;comments&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1269793419&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;;&#60;br /&#62;&#60;author&#62;$data-&#62;user&#60;/author&#62;&#60;br /&#62; &#160;&#60;guid&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1269793419&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;;&#60;br /&#62; &#60;description&#62;&#60;![CDATA[$data-&#62;description]]&#62;&#34;&#38;gt;click&#38;lt;/a&#38;gt; &#38;lt;br&#38;gt;&#38;lt;b&#38;gt; what about an image: &#38;lt;img src = &#34;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1269793419&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;;&#60;br /&#62; </description>
		</item>
		<item>
			<title>onlinebookmarks - update popup</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1263096754/9#9</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/onlinebookmarks</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1263096754/9#9</guid>
			<pubDate>Mon, 29 Mar 2010 01:10:25 GMT</pubDate>
			<description>&#60;br /&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1263096754&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;&#60;br /&#62; &#60;b&#62;Code:&#60;/b&#62;&#60;pre&#62;Warning&#38;#58; mysql_result&#38;#40;&#38;#41;&#38;#58; supplied argument is not a valid MySQL result resource in &#38;#47;home&#38;#47;brownlow&#38;#47;public_html&#38;#47;book&#38;#47;register&#38;#46;php on line 51 

&#60;/pre&#62;&#60;br /&#62;&#60;br /&#62;I think somewhere in the request to the database is not valid&#60;br /&#62;but the registration is working.</description>
		</item>
		<item>
			<title>General Discussions - theme forum</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1267385292/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/General Discussions</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1267385292/1#1</guid>
			<pubDate>Fri, 26 Mar 2010 19:11:24 GMT</pubDate>
			<description>thanks for your thoughts. I will look at it</description>
		</item>
		<item>
			<title>onlinebookmarks - statistic</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1269573469/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/onlinebookmarks</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1269573469/1#1</guid>
			<pubDate>Fri, 26 Mar 2010 19:07:38 GMT</pubDate>
			<description>$cid=mysql_connect($server, $user, $password ); //&#38;#1091;&#38;#1089;&#38;#1090;&#38;#1072;&#38;#1085;&#38;#1072;&#38;#1074;&#38;#1083;&#38;#1080;&#38;#1074;&#38;#1072;&#38;#1077;&#38;#1084; &#38;#1089;&#38;#1086;&#38;#1077;&#38;#1076;&#38;#1080;&#38;#1085;&#38;#1077;&#38;#1085;&#38;#1080;&#38;#1077; &#38;#1089; &#38;#1041;&#38;#1044;&#60;br /&#62;&#60;br /&#62;&#60;br /&#62;$cid=mysql_connect($server, $user, $password ); //&#38;#1091;&#38;#1089;&#38;#1090;&#38;#1072;&#38;#1085;&#38;#1072;&#38;#1074;&#38;#1083;&#38;#1080;&#38;#1074;&#38;#1072;&#38;#1077;&#38;#1084; &#38;#1089;&#38;#1086;&#38;#1077;&#38;#1076;&#38;#1080;&#38;#1085;&#38;#1077;&#38;#1085;&#38;#1080;&#38;#1077; &#38;#1089; &#38;#1041;&#38;#1044;&#60;br /&#62;&#60;br /&#62;if useing the same database&#60;br /&#62;&#60;br /&#62;&#60;br /&#62;require_once (&#34;./config/config.php&#34;);&#60;br /&#62;$link &#160; &#160; &#160;= @mysql_connect ($dsn[&#39;hostspec&#39;], $dsn[&#39;username&#39;], $dsn[&#39;password&#39;]) or die (mysql_error ());&#60;br /&#62;$db &#160; &#160; &#160;= @mysql_select_db ($dsn[&#39;database&#39;]) or die (mysql_error ());</description>
		</item>
		<item>
			<title>General Discussions - Tell us about yourself</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1269279200/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/General Discussions</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1269279200/1#1</guid>
			<pubDate>Thu, 25 Mar 2010 18:03:55 GMT</pubDate>
			<description>&#60;b&#62;This Topic was moved here from &#60;i&#62;General Discussions&#60;/i&#62; by &#60;i&#62;webgid&#60;/i&#62;.&#60;/b&#62;</description>
		</item>
		<item>
			<title>onlinebookmarks - use htaccess and mod rewrite</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1269277200/2#2</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/onlinebookmarks</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1269277200/2#2</guid>
			<pubDate>Wed, 24 Mar 2010 19:08:10 GMT</pubDate>
			<description>for simple tasks can use the service Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1269277200&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;</description>
		</item>
		<item>
			<title>onlinebookmarks - online-bookmarks-0.8.14_beta. version</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1269017390/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/onlinebookmarks</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1269017390/1#1</guid>
			<pubDate>Fri, 19 Mar 2010 16:50:37 GMT</pubDate>
			<description>here is same version with a .gz</description>
		</item>
		<item>
			<title>AJAX Chat Help - Ajax chat</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1262975741/11#11</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/AJAX Chat Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1262975741/11#11</guid>
			<pubDate>Sun, 14 Mar 2010 02:06:54 GMT</pubDate>
			<description>Thanks Henry!</description>
		</item>
		<item>
			<title>onlinebookmarks - change background color</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1265071613/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/onlinebookmarks</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1265071613/0#0</guid>
			<pubDate>Tue, 2 Feb 2010 00:46:53 GMT</pubDate>
			<description>here you go edit the header.php&#60;br /&#62;&#60;br /&#62;add this before the &#60;/head&#62;&#60;br /&#62;&#60;br /&#62;&#60;br /&#62;&#60;br /&#62; &#60;b&#62;Code:&#60;/b&#62;&#60;pre&#62;&#60;&#38;#33;&#38;#45;&#38;#45;Start for backgroundcolor&#38;#45;&#38;#45;&#62;
&#60;script type=&#34;text&#38;#47;javascript&#34;&#62;

&#60;&#38;#33;&#38;#45;&#38;#45;

function createCookie&#38;#40;name,value,days&#38;#41; &#123;
if &#38;#40;days&#38;#41; &#123;
var date = new &#38;#068;ate&#38;#40;&#38;#41;;
date&#38;#46;setTime&#38;#40;date&#38;#46;getTime&#38;#40;&#38;#41;+&#38;#40;days*24*60*60*1000&#38;#41;&#38;#41;;
var expires = &#34;; expires=&#34;+date&#38;#46;toGMTString&#38;#40;&#38;#41;;
&#125;
else var expires = &#34;&#34;;
document&#38;#46;cookie = name+&#34;=&#34;+value+expires+&#34;; path=&#38;#47;&#34;;
&#125;

function readCookie&#38;#40;name&#38;#41; &#123;
var nameEQ = name + &#34;=&#34;;
var ca = document&#38;#46;cookie&#38;#46;split&#38;#40;&#39;;&#39;&#38;#41;;
for&#38;#40;var i=0;i &#60; ca&#38;#46;length;i++&#38;#41; &#123;
var c = ca&#38;#91;i&#38;#93;;
while &#38;#40;c&#38;#46;charAt&#38;#40;0&#38;#41;==&#39; &#39;&#38;#41; c = c&#38;#46;substring&#38;#40;1,c&#38;#46;length&#38;#41;;
if &#38;#40;c&#38;#46;indexOf&#38;#40;nameEQ&#38;#41; == 0&#38;#41; return c&#38;#46;substring&#38;#40;nameEQ&#38;#46;length,c&#38;#46;length&#38;#41;;
&#125;
return null;
&#125;

function eraseCookie&#38;#40;name&#38;#41; &#123;
createCookie&#38;#40;name,&#34;&#34;,&#38;#45;1&#38;#41;;
&#125;

var backColor = new Array&#38;#40;&#38;#41;;

backColor&#38;#91;0&#38;#93; = &#39;#FFCCFF&#39;;
backColor&#38;#91;1&#38;#93; = &#39;#CCFFFF&#39;;
backColor&#38;#91;2&#38;#93; = &#39;#99FFCC&#39;;
backColor&#38;#91;3&#38;#93; = &#39;#CCCCFF&#39;;
backColor&#38;#91;4&#38;#93; = &#39;#FFFFFF&#39;;
backColor&#38;#91;5&#38;#93; = &#39;#CCCCCC&#39;;
backColor&#38;#91;6&#38;#93; = &#39;#000000&#39;;
backColor&#38;#91;7&#38;#93; = &#39;#808080&#39;;
backColor&#38;#91;8&#38;#93; = &#39;#A9A9A9&#39;;
backColor&#38;#91;9&#38;#93; = &#39;#&#38;#068;3&#38;#068;3&#38;#068;3&#39;;
backColor&#38;#91;10&#38;#93; = &#39;#7FFF&#38;#068;4&#39;;
backColor&#38;#91;11&#38;#93; = &#39;#0000FF&#39;;
backColor&#38;#91;12&#38;#93; = &#39;#000080&#39;;
backColor&#38;#91;13&#38;#93; = &#39;#800080&#39;;
backColor&#38;#91;14&#38;#93; = &#39;#FF1493&#39;;
backColor&#38;#91;15&#38;#93; = &#39;#EE82EE&#39;;
backColor&#38;#91;16&#38;#93; = &#39;#FFC0CB&#39;;
backColor&#38;#91;17&#38;#93; = &#39;#006400&#39;;
backColor&#38;#91;18&#38;#93; = &#39;#008000&#39;;
backColor&#38;#91;19&#38;#93; = &#39;#9AC&#38;#068;32&#39;;
backColor&#38;#91;20&#38;#93; = &#39;#FFFF00&#39;;
backColor&#38;#91;21&#38;#93; = &#39;#FFA500&#39;;
backColor&#38;#91;22&#38;#93; = &#39;#FF0000&#39;;
backColor&#38;#91;23&#38;#93; = &#39;#A52A2A&#39;;
backColor&#38;#91;24&#38;#93; = &#39;#&#38;#068;EB887&#39;;
backColor&#38;#91;25&#38;#93; = &#39;#F5F5&#38;#068;C&#39;;


function changeBG&#38;#40;whichColor&#38;#41;&#123;
document&#38;#46;body&#38;#46;style&#38;#46;backgroundColor = backColor&#38;#91;whichColor&#38;#93;;
createCookie&#38;#40;&#39;backColor&#39;, whichColor&#38;#41;;
&#125;

if&#38;#40;readCookie&#38;#40;&#39;backColor&#39;&#38;#41;&#38;#41;
document&#38;#46;write&#38;#40;&#39;&#60;style type=&#34;text&#38;#47;css&#34;&#62;body &#123;background&#38;#45;color&#38;#58; &#39; + backColor&#38;#91;readCookie&#38;#40;&#34;backColor&#34;&#38;#41;&#38;#93; + &#39;;&#125;&#60;&#38;#92;&#38;#47;style&#62;&#39;&#38;#41;;
&#38;#45;&#38;#45;&#62;

&#60;&#38;#47;script&#62;
&#60;&#38;#33;&#38;#45;&#38;#45;end for backgroundcolor&#38;#45;&#38;#45;&#62;
 

&#60;/pre&#62;&#60;br /&#62;&#60;br /&#62;now edit the bookmarks.php and add this before the &#60;?php&#60;br /&#62;&#60;br /&#62; &#60;b&#62;Code:&#60;/b&#62;&#60;pre&#62;&#60;form name=&#34;mycombo&#34;&#62;
&#60;p&#62;&#60;select name=&#34;example&#34; size=&#34;1&#34;&#62;
&#60;option value=&#34;&#34;&#62;Select a Background Color&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;0&#38;#41;&#34;&#62;LightPink&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;1&#38;#41;&#34;&#62;LightBlue&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;2&#38;#41;&#34;&#62;LightGreen&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;3&#38;#41;&#34;&#62;LightPurple&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;4&#38;#41;&#34;&#62;White&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;5&#38;#41;&#34;&#62;MediumGray&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;6&#38;#41;&#34;&#62;Black&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;7&#38;#41;&#34;&#62;Gray&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;8&#38;#41;&#34;&#62;&#38;#068;arkGray&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;9&#38;#41;&#34;&#62;LightGray&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;10&#38;#41;&#34;&#62;Aquamarine&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;11&#38;#41;&#34;&#62;Blue&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;12&#38;#41;&#34;&#62;Navy&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;13&#38;#41;&#34;&#62;Purple&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;14&#38;#41;&#34;&#62;&#38;#068;eepPink&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;15&#38;#41;&#34;&#62;Violet&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;16&#38;#41;&#34;&#62;Pink&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;17&#38;#41;&#34;&#62;&#38;#068;arkGreen&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;18&#38;#41;&#34;&#62;Green&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;19&#38;#41;&#34;&#62;YellowGreen&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;20&#38;#41;&#34;&#62;Yellow&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;21&#38;#41;&#34;&#62;Orange&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;22&#38;#41;&#34;&#62;Red&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;23&#38;#41;&#34;&#62;Brown&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;24&#38;#41;&#34;&#62;BurlyWood&#60;&#38;#47;option&#62;
&#60;option value=&#34;javascript&#38;#58;changeBG&#38;#40;25&#38;#41;&#34;&#62;Beige&#60;&#38;#47;option&#62;
&#60;&#38;#47;select&#62;

&#60;script type=&#34;text&#38;#47;javascript&#34;&#62;

&#60;&#38;#33;&#38;#45;&#38;#45;
function go&#38;#40;&#38;#41;&#123;
location=
document&#38;#46;mycombo&#38;#46;example&#38;#46;
options&#38;#91;document&#38;#46;mycombo&#38;#46;example&#38;#46;selectedIndex&#38;#93;&#38;#46;value
&#125;
&#38;#47;&#38;#47;&#38;#45;&#38;#45;&#62;

&#60;&#38;#47;script&#62;

&#60;input type=&#34;button&#34; name=&#34;test&#34; value=&#34;Change Background Color&#34; onClick=&#34;go&#38;#40;&#38;#41;&#34;&#62;
&#60;&#38;#47;form&#62;&#60;&#38;#47;p&#62;
 

&#60;/pre&#62;</description>
		</item>
		<item>
			<title>phpdirector - 0.30 Dropdown Language Box</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1264560033/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/phpdirector</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1264560033/1#1</guid>
			<pubDate>Thu, 28 Jan 2010 04:02:16 GMT</pubDate>
			<description>great script! thanks</description>
		</item>
		<item>
			<title>phpdirector - 0.30 Change Header Login Box</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1264559979/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/phpdirector</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1264559979/0#0</guid>
			<pubDate>Wed, 27 Jan 2010 02:39:39 GMT</pubDate>
			<description>Heres how to change the login box at the top into a &#39;login - register&#39; link&#60;br /&#62;&#60;br /&#62;Example (Top Right) Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1264559979&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; (Please note the site is being designed)&#60;br /&#62;&#60;br /&#62;Create a new file called &#39;loginbox.tpl&#39; and paste the following code into it.&#60;br /&#62;&#60;br /&#62; &#60;b&#62;Code:&#60;/b&#62;&#60;pre&#62;&#123;if isset&#38;#40;$smarty&#38;#46;cookies&#38;#46;id&#38;#41;&#125;
	&#60;div&#62;
		&#60;h5&#62;&#60;a href=&#34;member&#38;;anch=46;php&#34;&#62;&#123;$LAN_132&#125;&#60;&#38;#47;a&#62; &#38;#45; &#60;a href=&#34;message&#38;#46;php&#34;&#62;&#60;img src=&#34;templates&#38;#47;default&#38;#47;images&#38;#47;mail&#38;#46;gif&#34;&#125;&#34; alt=&#34;Messeges&#34; width=&#34;16px&#34; height=&#34;11px&#34; border=&#34;0&#34; &#38;#47;&#62;&#123;if $nbmess gte 1&#125;&#38;#40;&#60;font color=&#34;red&#34;&#62;&#123;$nbmess&#125;&#60;&#38;#47;font&#62;&#38;#41;&#123;else&#125;&#38;#40;&#123;$nbmess&#125;&#38;#41;&#123;&#38;#47;if&#125;&#60;&#38;#47;a&#62; &#38;#45; &#60;a href=&#34;logout&#38;#46;php&#34;&#62;&#123;$LAN_106&#125;&#60;&#38;#47;a&#62;&#60;br&#62;
&#60;a href=&#34;avatar&#38;#46;php&#34;&#62;&#123;$LAN_111&#125;&#60;&#38;#47;a&#62; &#38;#45; &#60;a href=&#34;favorite&#38;#46;php&#34;&#62;&#123;$LAN_110&#125;&#60;&#38;#47;a&#62;&#60;&#38;#47;h5&#62;
	&#60;&#38;#47;div&#62;

&#123;else&#125;

	 &#60;p&#62;&#60;a href=&#34;login&#38;#46;php&#34;&#62;&#123;$LAN_103&#125;&#60;&#38;#47;a&#62; &#38;#45; &#60;a href=&#34;register&#38;#46;php&#34;&#62;&#123;$LAN_107&#125;&#60;&#38;#47;a&#62;&#60;&#38;#47;p&#62;

&#123;&#38;#47;if&#125; 

&#60;/pre&#62;&#60;br /&#62;&#60;br /&#62;Save that then open header.tpl and find the following&#60;br /&#62;&#60;br /&#62; &#60;b&#62;Code:&#60;/b&#62;&#60;pre&#62;&#123;include file=&#34;memberbar&#38;#46;tpl&#34;&#125; 

&#60;/pre&#62;&#60;br /&#62;&#60;br /&#62;and replace with &#60;br /&#62;&#60;br /&#62; &#60;b&#62;Code:&#60;/b&#62;&#60;pre&#62;&#123;include file=&#34;loginbar&#38;#46;tpl&#34;&#125; 

&#60;/pre&#62;&#60;br /&#62;&#60;br /&#62;Save it and your good to go.&#60;br /&#62;&#60;br /&#62;For questions or support use Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1264559979&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;</description>
		</item>
		<item>
			<title>YaBB Help - cookies</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1264183459/3#3</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1264183459/3#3</guid>
			<pubDate>Fri, 22 Jan 2010 18:59:39 GMT</pubDate>
			<description>&#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?num=1264183459/2#2&#34;&#62;dlangshaw wrote&#60;/a&#62; on Jan 22&#60;sup&#62;nd&#60;/sup&#62;, 2010 at 1:55pm:&#60;br /&#62;&#60;div&#62;YOUR BAD!!! LOOL &#160;&#60;/div&#62;&#60;br /&#62;&#60;br /&#62;Most website use cookies so not sure what to tell them. I guess you could tell them just not to delete that one for the forum &#160;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Templates/Forum/default/cheesy.gif&#34; border=&#34;0&#34; alt=&#34;Cheesy&#34; title=&#34;Cheesy&#34; /&#62;</description>
		</item>
		<item>
			<title>YaBB Help - Banned Members that Are Not Banned</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1259631997/5#5</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1259631997/5#5</guid>
			<pubDate>Fri, 22 Jan 2010 18:10:42 GMT</pubDate>
			<description>&#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?num=1259631997/4#4&#34;&#62;dlangshaw wrote&#60;/a&#62; on Jan 22&#60;sup&#62;nd&#60;/sup&#62;, 2010 at 1:02pm:&#60;br /&#62;&#60;div&#62;The developers at YaBB have no idea at what they are doing....according to the responses they provide...sending me more questions than answers. disappointing.... &#160;&#60;/div&#62;&#60;br /&#62;&#60;br /&#62;&#60;br /&#62;could you send me a link to that forum</description>
		</item>
		<item>
			<title>ColdFusion Help - Form to mail action script</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1261629495/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/ColdFusion Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1261629495/1#1</guid>
			<pubDate>Thu, 24 Dec 2009 14:39:42 GMT</pubDate>
			<description>&#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?num=1261629495/0#0&#34;&#62;dlangshaw wrote&#60;/a&#62; on Dec 23&#60;sup&#62;rd&#60;/sup&#62;, 2009 at 11:38pm:&#60;br /&#62;&#60;div&#62; I use an old cfm file to bounce my form to mail action off of that automatically includes formating the text in the email that is produced by the form values. &#60;br /&#62;&#60;br /&#62;Have you worked with simple forms using cfm?&#60;br /&#62;&#60;br /&#62;Also...do you know anything about vBulletin 4.0 cms...?&#60;br /&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1261629495&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;&#60;br /&#62;Merry Christmsa!!!  &#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Templates/Forum/default/cheesy.gif&#34; border=&#34;0&#34; alt=&#34;Cheesy&#34; title=&#34;Cheesy&#34; /&#62; &#160;&#60;/div&#62;&#60;br /&#62;&#60;br /&#62;I have never played with them but it would be fun, I like PHP too</description>
		</item>
		<item>
			<title>YaBB Help - The saga continues...</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1261416114/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1261416114/1#1</guid>
			<pubDate>Mon, 21 Dec 2009 17:40:02 GMT</pubDate>
			<description>You need to get help from Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1261416114&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;&#60;br /&#62;I am not sure what is happening to your fourm.</description>
		</item>
		<item>
			<title>PERL CAPTCHA Help - Captcha Misconfig?</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1260219373/12#12</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/PERL CAPTCHA Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1260219373/12#12</guid>
			<pubDate>Tue, 8 Dec 2009 13:11:55 GMT</pubDate>
			<description>did you get it working?</description>
		</item>
		<item>
			<title>YaBB Help - forum difficulties</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1257971097/5#5</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1257971097/5#5</guid>
			<pubDate>Thu, 12 Nov 2009 15:19:15 GMT</pubDate>
			<description>Great so everthing ok now?</description>
		</item>
		<item>
			<title>YaBB Help - Forbidden</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1257368397/5#5</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1257368397/5#5</guid>
			<pubDate>Fri, 6 Nov 2009 20:39:45 GMT</pubDate>
			<description>If you e-mail me the login information I will be glad to look at it. It is strange.</description>
		</item>
		<item>
			<title>YaBB Help - Bounce back</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1256257720/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1256257720/1#1</guid>
			<pubDate>Fri, 23 Oct 2009 01:19:35 GMT</pubDate>
			<description>PM me with the e-mail address you are using</description>
		</item>
		<item>
			<title>YaBB Help - Settings</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1255994059/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1255994059/1#1</guid>
			<pubDate>Tue, 20 Oct 2009 12:27:02 GMT</pubDate>
			<description>you have the same seeting checked as I do. I tell you what try to reset your password here on the forum.</description>
		</item>
		<item>
			<title>Looking for a script, Open Source, Freeware and others. - Moon Phase Calendar App</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1255454391/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/Looking for a script, Open Source, Freeware and others.</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1255454391/1#1</guid>
			<pubDate>Thu, 15 Oct 2009 00:37:53 GMT</pubDate>
			<description>I like the one you have, where did you get it? &#60;br /&#62;&#60;br /&#62;I found some here&#60;br /&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1255454391&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;&#60;br /&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1255454391&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;</description>
		</item>
		<item>
			<title>YaBB Help - Banned</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1254327268/16#16</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1254327268/16#16</guid>
			<pubDate>Tue, 13 Oct 2009 18:18:41 GMT</pubDate>
			<description>Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1254327268&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;</description>
		</item>
		<item>
			<title>YaBB Help - Posting Images to a PM</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1255105794/6#6</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1255105794/6#6</guid>
			<pubDate>Fri, 9 Oct 2009 16:48:13 GMT</pubDate>
			<description>Hey your name is not Maual? but thanks!!!&#60;br /&#62;&#60;br /&#62;I about died two days ago....had a cardiac event..that went on and on...thought it was heart burn. &#160;Couldn&#39;t stand it anymore so I took myself to the hospital where they went up through my artery and gave me a stent. Joy...I had 95 percent blockage in my main artery to the heart. &#60;br /&#62;&#60;br /&#62;All this stress over this silly site....arrgh and years of BBQ and Mexican Food ha </description>
		</item>
		<item>
			<title>Looking for a script, Open Source, Freeware and others. - looking for a script, hover over a image then popup</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1254754337/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/Looking for a script, Open Source, Freeware and others.</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1254754337/0#0</guid>
			<pubDate>Mon, 5 Oct 2009 14:52:17 GMT</pubDate>
			<description>I am looking for a script that when you hover over a tumbnail it will pop up in a larger photo of the image.&#60;br /&#62;&#60;br /&#62;does anyone know where I can find a script like this?</description>
		</item>
		<item>
			<title>YaBB Help - moderators</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1254421385/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1254421385/1#1</guid>
			<pubDate>Thu, 1 Oct 2009 18:29:49 GMT</pubDate>
			<description>go to admin&#60;br /&#62;&#60;br /&#62;under Forum Controls&#60;br /&#62;click on boards&#60;br /&#62;put a ckeck in the one that you want to edit then at the bottom click go&#60;br /&#62;&#60;br /&#62;make sure that With selected: &#160;Edit &#160;Remove &#160;the edit is checked and not the remove the just look at the board &#60;br /&#62;&#60;br /&#62;and look under &#60;br /&#62;Moderators:&#60;br /&#62;</description>
		</item>
		<item>
			<title>YaBB Help - boatclassifieds</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1253731254/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1253731254/1#1</guid>
			<pubDate>Wed, 23 Sep 2009 18:44:40 GMT</pubDate>
			<description>I will take a look at it... Have you tried posting and testing to see if it is working &#160;or to see if you see a problem?&#60;br /&#62;&#60;br /&#62;what are the complaints? </description>
		</item>
		<item>
			<title>YaBB Help - Rebuild List</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1252629317/2#2</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1252629317/2#2</guid>
			<pubDate>Sat, 12 Sep 2009 02:35:28 GMT</pubDate>
			<description>I rebuit all, do you think we need to reinstall the messages again. you could just upload the message floder again to try one last time.</description>
		</item>
		<item>
			<title>YaBB Help - YaBB Backup</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1252515073/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1252515073/1#1</guid>
			<pubDate>Wed, 9 Sep 2009 17:10:10 GMT</pubDate>
			<description>it could be the permission issues</description>
		</item>
		<item>
			<title>YaBB Help - Events Calendar</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1251776003/2#2</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1251776003/2#2</guid>
			<pubDate>Tue, 1 Sep 2009 19:57:22 GMT</pubDate>
			<description>do you want the name&#60;br /&#62;&#60;br /&#62;Water/Fish Preservation Organizations&#60;br /&#62;&#60;br /&#62;and under want Category?</description>
		</item>
		<item>
			<title>Looking for a script, Open Source, Freeware and others. - Booking Calendar</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1251384351/4#4</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/Looking for a script, Open Source, Freeware and others.</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1251384351/4#4</guid>
			<pubDate>Thu, 27 Aug 2009 17:16:12 GMT</pubDate>
			<description>here is a list of some&#60;br /&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1251384351&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;&#60;br /&#62;Not sure but you might could use this one.&#60;br /&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1251384351&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;&#60;br /&#62;this one is 14.95 not free&#60;br /&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1251384351&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;&#60;br /&#62;this one 28.00&#60;br /&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1251384351&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;</description>
		</item>
		<item>
			<title>Looking for a script, Open Source, Freeware and others. - to do list</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1250996165/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/Looking for a script, Open Source, Freeware and others.</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1250996165/0#0</guid>
			<pubDate>Sun, 23 Aug 2009 02:56:05 GMT</pubDate>
			<description>I am looking for a good free script for a to do list. something to keep track of list that can be placed on website. with login</description>
		</item>
		<item>
			<title>YaBB Help - Forum Time Setting</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1250714798/12#12</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1250714798/12#12</guid>
			<pubDate>Fri, 21 Aug 2009 19:40:13 GMT</pubDate>
			<description>did you try to reset and logon yourself?&#60;br /&#62;are they old users?</description>
		</item>
		<item>
			<title>YaBB Help - Boat Classifieds</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1250827153/8#8</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1250827153/8#8</guid>
			<pubDate>Fri, 21 Aug 2009 17:05:15 GMT</pubDate>
			<description>Looooooooooooooooong hard road!&#60;br /&#62;&#60;br /&#62;Backatcha cheers buddy! &#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Smilies/wine1.gif&#34; border=&#34;0&#34; alt=&#34;Smiley&#34; title=&#34;Smiley&#34; /&#62;</description>
		</item>
		<item>
			<title>PHP Help - OpenX</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1250827677/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/PHP Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1250827677/1#1</guid>
			<pubDate>Fri, 21 Aug 2009 12:21:57 GMT</pubDate>
			<description>You are welcome! let me know if you need any more help</description>
		</item>
		<item>
			<title>PHP Help - phpAdsNew</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1250521256/33#33</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/PHP Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1250521256/33#33</guid>
			<pubDate>Thu, 20 Aug 2009 23:06:24 GMT</pubDate>
			<description>It is already tons better....the interface is much better and I am using the tutorial slideshow. Will report back here soon...to let you know. Thanks again...happy camper here!</description>
		</item>
		<item>
			<title>YaBB Help - Login Errors</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1250609467/14#14</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1250609467/14#14</guid>
			<pubDate>Thu, 20 Aug 2009 02:45:34 GMT</pubDate>
			<description>I did upload some old users and run some of the maintenance scripts.&#60;br /&#62;&#60;br /&#62;hope this helps the users. I have been working &#160;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Smilies/runningdog.gif&#34; border=&#34;0&#34; alt=&#34;Smiley&#34; title=&#34;Smiley&#34; /&#62;</description>
		</item>
		<item>
			<title>JavaScript Help - Date drop down selectboxes generation</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1250712458/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/JavaScript Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1250712458/1#1</guid>
			<pubDate>Thu, 20 Aug 2009 02:42:42 GMT</pubDate>
			<description>thanks JMRKER&#60;br /&#62;&#60;br /&#62;this could be a great help to someone. &#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Smilies/readinghelp0wn.gif&#34; border=&#34;0&#34; alt=&#34;Smiley&#34; title=&#34;Smiley&#34; /&#62;&#60;br /&#62;&#60;br /&#62;I have looked for something like this in the past</description>
		</item>
		<item>
			<title>Useful links - Hide Affiliate Links On Any Web Page Quickly and Easily</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1250622858/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/Useful links</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1250622858/0#0</guid>
			<pubDate>Tue, 18 Aug 2009 19:14:18 GMT</pubDate>
			<description>Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1250622858&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;&#60;br /&#62; &#60;b&#62;Code:&#60;/b&#62;&#60;pre&#62;&#60;img src=&#34;http&#38;#58;&#38;#47;&#38;#47;yourI&#38;#068;&#38;#46;merchantI&#38;#068;&#38;#46;hop&#38;#46;clickbank&#38;#46;net&#38;#47;&#34; alt=&#34;&#34; width=&#34;1&#34; height=&#34;1&#34; &#38;#47;&#62; 

&#60;/pre&#62;</description>
		</item>
		<item>
			<title>YaBB Help - Login Errors</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1250520121/5#5</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1250520121/5#5</guid>
			<pubDate>Mon, 17 Aug 2009 16:36:49 GMT</pubDate>
			<description>I do not see this user Roid_Rage</description>
		</item>
		<item>
			<title>PERL CAPTCHA Help - Can&#39;t get Perl CAPTCHA to work</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1250423031/2#2</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/PERL CAPTCHA Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1250423031/2#2</guid>
			<pubDate>Mon, 17 Aug 2009 15:17:31 GMT</pubDate>
			<description>Did you get it working Dave or you need more help and information?</description>
		</item>
		<item>
			<title>JavaScript Help - Page print button.</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1250423539/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/JavaScript Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1250423539/1#1</guid>
			<pubDate>Sun, 16 Aug 2009 16:28:30 GMT</pubDate>
			<description>thanks dave this will help users!</description>
		</item>
		<item>
			<title>Freelancing - Freelancing</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1250263852/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/Freelancing</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1250263852/0#0</guid>
			<pubDate>Fri, 14 Aug 2009 15:30:52 GMT</pubDate>
			<description>I am always interested in entertaining the chance of taking on new projects that are within my range of expertise. I work amongst a network of IT professionals, business majors, programmers and graphic designers as well as offer my years of experience of web professional work that spans back to the days of bulletin boards at the ending era of keypunch cards to current apps. Today&#39;s social networking and programming techniques allow a client to chose from a wide range of options to best deliver their presence on the web as well as picking the best marketing strategy for their business. &#60;br /&#62;&#60;br /&#62;For more information, contact duane@survnet.com or look through my portfolio at &#160;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1250263852&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;&#60;br /&#62;Be seen be heard but most of all...in 3 seconds be in touch with your customer!</description>
		</item>
		<item>
			<title>YaBB Help - YaBB Help</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1250010241/5#5</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1250010241/5#5</guid>
			<pubDate>Thu, 13 Aug 2009 13:38:14 GMT</pubDate>
			<description>dlangshaw&#60;br /&#62;Should the members now be recounted and all that stuff? If you don&#39;t&#60;br /&#62;mind....can you have a look and do what needs to be done please.&#60;br /&#62;&#60;br /&#62;&#60;br /&#62;yes they should I am looking at it now</description>
		</item>
		<item>
			<title>YaBB Help - cgi_bin folder member list</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1250038187/2#2</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/YaBB Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1250038187/2#2</guid>
			<pubDate>Wed, 12 Aug 2009 16:58:49 GMT</pubDate>
			<description>thanks for you ftp information.&#60;br /&#62;I am looking now for old files&#60;br /&#62;I rename some old files to old-plus the filename.&#60;br /&#62;&#60;br /&#62;I seen some under /httpdocs&#60;br /&#62;&#60;br /&#62;I rename them to &#60;br /&#62;&#60;br /&#62;old-forum&#60;br /&#62;old-forumsyabb&#60;br /&#62;old-forumsyabb2006&#60;br /&#62;old-forumsyabb2008</description>
		</item>
		<item>
			<title>Useful links - FavIcon Generator</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1249709307/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/Useful links</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1249709307/0#0</guid>
			<pubDate>Sat, 8 Aug 2009 05:28:27 GMT</pubDate>
			<description>here is a good link to create you own FavIcon for your website&#60;br /&#62;&#60;br /&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1249709307&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;</description>
		</item>
		<item>
			<title>Hints - How to display icon in address bar</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1249708858/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/Hints</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1249708858/0#0</guid>
			<pubDate>Sat, 8 Aug 2009 05:20:58 GMT</pubDate>
			<description>here is how you would do it&#60;br /&#62;&#60;br /&#62;&#60;br /&#62;&#60;br /&#62;&#60;LINK REL=&#34;SHORTCUT ICON&#34; HREF=&#34;iconname.ico&#34;type=&#34;image/x-icon&#34;&#62;&#60;br /&#62;&#60;LINK REL=&#34;ICON&#34; HREF=&#34;iconname.ico&#34;type=&#34;image/x-icon&#34;&#62;&#60;br /&#62;&#60;br /&#62;&#60;br /&#62;Above tag should be inserted in-between the &#60;HEAD&#62; and &#60;/HEAD&#62; tags.</description>
		</item>
		<item>
			<title>Working Scripts - Hits counter</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1249611297/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/Working Scripts</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1249611297/0#0</guid>
			<pubDate>Fri, 7 Aug 2009 02:14:57 GMT</pubDate>
			<description>Here is a working hits counter in perl&#60;br /&#62;&#60;br /&#62; &#60;b&#62;Code:&#60;/b&#62;&#60;pre&#62;$inFile2 = &#34;&#38;#47;path&#38;#47;to&#38;#47;file&#38;#47;&#34;;


if&#38;#40;&#38;#45;e $inFile2&#38;#41;
&#123;
#read from the file
open out2, &#34;&#60; $inFile2&#34; or die &#34;Can&#39;t open $inFile2 &#38;#58; $&#38;#33;&#34;;
$count = &#60;out2&#62;;
close out2;
unlink&#38;#40;$inFile2&#38;#41;;
#add 1 to value
 $count++;
open OUT2, &#34;+&#62; $inFile2&#34; or die &#34;Can&#39;t open $inFile2 &#38;#58; $&#38;#33;&#34;;
printf OUT2 $count;
close OUT2;
chmod&#38;#40;0666, $inFile2&#38;#41;; # to chmod file when created
print qq~ &#60;br&#62;Ad Has Been Viewed&#38;#58; $count Times&#60;br&#62;~;
&#125;
else
&#123;
open OUT2, &#34;+&#62; $inFile2&#34; or die &#34;Can&#39;t open $inFile2 &#38;#58; $&#38;#33;&#34;;
$count=1;
printf OUT2 $count;
close OUT2;
chmod&#38;#40;0666, $inFile2&#38;#41;; # to chmod file when created
print qq~ &#60;br&#62;Ad Has Been Viewed&#38;#58; $count Times&#60;br&#62;~;
&#125;

 

&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Useful links - IP address country block generator</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1249576747/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/Useful links</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1249576747/0#0</guid>
			<pubDate>Thu, 6 Aug 2009 16:39:07 GMT</pubDate>
			<description>Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1249576747&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;&#60;br /&#62;&#60;br /&#62;here si a good link to find out the country of a IP address also you can include the IP address in you .htaccess to deny or allow IP address&#60;br /&#62;&#60;br /&#62;</description>
		</item>
		<item>
			<title>PERL CAPTCHA Help - captcha help and how not to use the IP address</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1249562196/1#1</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/PERL CAPTCHA Help</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1249562196/1#1</guid>
			<pubDate>Thu, 6 Aug 2009 13:05:46 GMT</pubDate>
			<description>bumblebeeware.com is aware of the issue and talked about it on&#60;br /&#62;Multimedia File Viewing and Clickable Links are available for Registered Members only!! &#160;You need to &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=login;sesredir=num~1249562196&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/login.png&#34; alt=&#34;Login&#34; title=&#34;Login&#34; border=&#34;0&#34; /&#62;&#60;/a&#62; or &#60;a href=&#34;http://www.helpmewithperl.com/YaBB.pl?action=register&#34;&#62;&#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Buttons/English/register.png&#34; alt=&#34;Register&#34; title=&#34;Register&#34; border=&#34;0&#34; /&#62;&#60;/a&#62;&#60;br /&#62;&#60;br /&#62;The suggestion is to replace the $ENV&#123;&#39;REMOTE_ADDR&#39;&#125; in the&#60;br /&#62;captcha.cgi with a random number.&#60;br /&#62;&#60;br /&#62;Change the varriable from $ENV&#123;&#39;REMOTE_ADDR&#39;&#125; to $somerandomnumber&#60;br /&#62;&#60;br /&#62;Just define that number before you call it with something like:&#60;br /&#62;&#60;br /&#62;The check captcha is already set up to look for the cookie if the ip address is not available. So the only change is to the captcha.cgi&#60;br /&#62;&#60;br /&#62;Just add the line:&#60;br /&#62;&#60;br /&#62;$somerandomnumber = int(rand(999999));&#60;br /&#62;&#60;br /&#62;and replace all of the $ENV&#123;&#39;REMOTE_ADDR&#39;&#125; with $somerandomnumber&#60;br /&#62;&#60;br /&#62;And it should work for you even if people have the same ip.&#60;br /&#62;</description>
		</item>
		<item>
			<title>General Discussions - Welcome to helpmewithperl.com</title>
			<link>http://www.helpmewithperl.com/YaBB.pl?num=1239494700/0#0</link>
			<category>Help Me with Perl at HelpMeWithPerl.com/General Discussions</category>
			<guid>http://www.helpmewithperl.com/YaBB.pl?num=1239494700/0#0</guid>
			<pubDate>Sun, 12 Apr 2009 00:05:00 GMT</pubDate>
			<description>&#60;div&#62;&#60;b&#62; Welcome to helpmewithperl.com &#60;img src=&#34;http://www.helpmewithperl.com/yabbfiles/Templates/Forum/default/grin.gif&#34; border=&#34;0&#34; alt=&#34;Grin&#34; title=&#34;Grin&#34; /&#62;&#60;/b&#62;&#60;/div&#62;&#60;br /&#62;&#60;br /&#62;The helpmewithperl.com team would like to greatly thank you for choosing this forum. &#60;br /&#62;</description>
		</item>

	</channel>
</rss>
