<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="https://purl.org/rss/1.0/modules/content/" xmlns:dc="https://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[BP Forums - HTML/CSS/PHP (Web Development)]]></title>
		<link>https://bpforums.info/</link>
		<description><![CDATA[BP Forums - https://bpforums.info]]></description>
		<pubDate>Fri, 15 May 2026 14:02:57 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Need help with Joomla php Script]]></title>
			<link>https://bpforums.info/showthread.php?tid=810</link>
			<pubDate>Mon, 09 Sep 2013 14:30:51 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=638">redcore</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=810</guid>
			<description><![CDATA[I am a total php newbie and hope to find someone who could help on a few issues:<br />
Site CMS=joomla 2.5; the component breezingforms/contentbuilder requires certain php code to link a field to a task i.e. referring to a URL. I have more detail for someone willing to help.]]></description>
			<content:encoded><![CDATA[I am a total php newbie and hope to find someone who could help on a few issues:<br />
Site CMS=joomla 2.5; the component breezingforms/contentbuilder requires certain php code to link a field to a task i.e. referring to a URL. I have more detail for someone willing to help.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Cheap Domain]]></title>
			<link>https://bpforums.info/showthread.php?tid=704</link>
			<pubDate>Thu, 22 Nov 2012 20:22:05 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=321">manishshrestha60</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=704</guid>
			<description><![CDATA[Hi, BPForums<br />
<br />
      I am looking for a cheap place to by a domain name. Can anyone suggest a good place.]]></description>
			<content:encoded><![CDATA[Hi, BPForums<br />
<br />
      I am looking for a cheap place to by a domain name. Can anyone suggest a good place.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Script Help]]></title>
			<link>https://bpforums.info/showthread.php?tid=693</link>
			<pubDate>Mon, 29 Oct 2012 02:31:56 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=321">manishshrestha60</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=693</guid>
			<description><![CDATA[Can some one help me with the script like this. I want the script of referring and unlock the link and redirect to next page or something like that.<br />
&lt;!-- m --&gt;&lt;a class="postlink" href="http://freeleaguecodes.com/ref/"&gt;http://freeleaguecodes.com/ref/&lt;/a&gt;&lt;!-- m --&gt;]]></description>
			<content:encoded><![CDATA[Can some one help me with the script like this. I want the script of referring and unlock the link and redirect to next page or something like that.<br />
&lt;!-- m --&gt;&lt;a class="postlink" href="http://freeleaguecodes.com/ref/"&gt;http://freeleaguecodes.com/ref/&lt;/a&gt;&lt;!-- m --&gt;]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Posting Video]]></title>
			<link>https://bpforums.info/showthread.php?tid=676</link>
			<pubDate>Sun, 14 Oct 2012 12:23:18 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=321">manishshrestha60</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=676</guid>
			<description><![CDATA[Hey BP Forums, <br />
     I want to learn how to post a YouTube video in this forum it tried this code and it didn't work.<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[youtube]sfdzxdfzxvc[/youtube]<br />
[youtube]http://www.youtube.com/watch?v=xxxxxxxxx[/youtube]</code></div></div>]]></description>
			<content:encoded><![CDATA[Hey BP Forums, <br />
     I want to learn how to post a YouTube video in this forum it tried this code and it didn't work.<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[youtube]sfdzxdfzxvc[/youtube]<br />
[youtube]http://www.youtube.com/watch?v=xxxxxxxxx[/youtube]</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Why Isn't this javascript code working?]]></title>
			<link>https://bpforums.info/showthread.php?tid=667</link>
			<pubDate>Fri, 05 Oct 2012 19:05:05 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=163">Himansh</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=667</guid>
			<description><![CDATA[I created a html document in which i added a predefined text in the textbox like "enter name here"<br />
I created a function to delete the text when user clicks the input.<br />
But , it had one problem that whenever user types his data and when he clicks the input then all his data is deleted. To prevent this used this method but this is not working , I don't know why.<br />
here's the code<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
<br />
&lt;head&gt;<br />
<br />
<br />
&lt;script type="text/javascript"&gt;<br />
function emptyfield(field){<br />
field.value = "";<br />
}<br />
<br />
if(document.frmlogin.box.value != "Enter Username Here"){<br />
frmlogin.box.onclick = "";<br />
}<br />
&lt;/script&gt;<br />
&lt;/head&gt;<br />
<br />
&lt;body&gt;<br />
<br />
&lt;form name="frmlogin" &gt;<br />
Username: &lt;input type="text" id="cool" value="Enter Username Here" name="box" onclick="emptyfield(document.frmlogin.boÃ¢Â€Â¦ /&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div>I could have done it very easily using just one function by i want to know what is wrong in this.<br />
I don't want alternative methods of doing it, i want to know what is wrong in this?<br />
<br />
-Himansh]]></description>
			<content:encoded><![CDATA[I created a html document in which i added a predefined text in the textbox like "enter name here"<br />
I created a function to delete the text when user clicks the input.<br />
But , it had one problem that whenever user types his data and when he clicks the input then all his data is deleted. To prevent this used this method but this is not working , I don't know why.<br />
here's the code<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
<br />
&lt;head&gt;<br />
<br />
<br />
&lt;script type="text/javascript"&gt;<br />
function emptyfield(field){<br />
field.value = "";<br />
}<br />
<br />
if(document.frmlogin.box.value != "Enter Username Here"){<br />
frmlogin.box.onclick = "";<br />
}<br />
&lt;/script&gt;<br />
&lt;/head&gt;<br />
<br />
&lt;body&gt;<br />
<br />
&lt;form name="frmlogin" &gt;<br />
Username: &lt;input type="text" id="cool" value="Enter Username Here" name="box" onclick="emptyfield(document.frmlogin.boÃ¢Â€Â¦ /&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></div></div>I could have done it very easily using just one function by i want to know what is wrong in this.<br />
I don't want alternative methods of doing it, i want to know what is wrong in this?<br />
<br />
-Himansh]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[What are your favorite web hosting services?]]></title>
			<link>https://bpforums.info/showthread.php?tid=626</link>
			<pubDate>Sat, 01 Sep 2012 21:45:09 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=317">Macatone</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=626</guid>
			<description><![CDATA[I'm curious to see what everybody's favorite web hosting services are. I've always used Weebly (<a href="http://www.weebly.com/" target="_blank" rel="noopener" class="mycode_url">http://www.weebly.com/</a>), but from what I've seen and heard, HostGator (<a href="http://www.hostgator.com/" target="_blank" rel="noopener" class="mycode_url">http://www.hostgator.com/</a>) is pretty good as well.<br />
<br />
What are your favorites?]]></description>
			<content:encoded><![CDATA[I'm curious to see what everybody's favorite web hosting services are. I've always used Weebly (<a href="http://www.weebly.com/" target="_blank" rel="noopener" class="mycode_url">http://www.weebly.com/</a>), but from what I've seen and heard, HostGator (<a href="http://www.hostgator.com/" target="_blank" rel="noopener" class="mycode_url">http://www.hostgator.com/</a>) is pretty good as well.<br />
<br />
What are your favorites?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[HTML ! How to Highlight a tab when Hover over it ?]]></title>
			<link>https://bpforums.info/showthread.php?tid=482</link>
			<pubDate>Thu, 15 Mar 2012 15:45:24 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=163">Himansh</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=482</guid>
			<description><![CDATA[I saw this website <br />
&lt;!-- m --&gt;&lt;a class="postlink" href="http://www.pbaproductions.com/"&gt;http://www.pbaproductions.com/&lt;/a&gt;&lt;!-- m --&gt;<br />
<br />
and you will notice that whenever you put your cursor on about us and other tabs they will highlight <br />
<br />
can anybody tell me how to do that]]></description>
			<content:encoded><![CDATA[I saw this website <br />
&lt;!-- m --&gt;&lt;a class="postlink" href="http://www.pbaproductions.com/"&gt;http://www.pbaproductions.com/&lt;/a&gt;&lt;!-- m --&gt;<br />
<br />
and you will notice that whenever you put your cursor on about us and other tabs they will highlight <br />
<br />
can anybody tell me how to do that]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Wierd]]></title>
			<link>https://bpforums.info/showthread.php?tid=457</link>
			<pubDate>Mon, 06 Feb 2012 19:13:09 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=201">donkfather</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=457</guid>
			<description><![CDATA[Wierd that this one has 0 posts .. :&gt; so i'm the first &lt;!-- s<img src="https://bpforums.info/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /> --&gt;&lt;img src="{SMILIES_PATH}/icon_e_biggrin.gif" alt="<img src="https://bpforums.info/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" />" title="Very Happy" /&gt;&lt;!-- s<img src="https://bpforums.info/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /> --&gt;]]></description>
			<content:encoded><![CDATA[Wierd that this one has 0 posts .. :&gt; so i'm the first &lt;!-- s<img src="https://bpforums.info/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /> --&gt;&lt;img src="{SMILIES_PATH}/icon_e_biggrin.gif" alt="<img src="https://bpforums.info/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" />" title="Very Happy" /&gt;&lt;!-- s<img src="https://bpforums.info/images/smilies/biggrin.png" alt="Big Grin" title="Big Grin" class="smilie smilie_4" /> --&gt;]]></content:encoded>
		</item>
	</channel>
</rss>