<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule">

<channel>
<title>Webmasters and Developers forum - dslreports.com community</title>
<link>http://www.dslreports.com/forum/webmonk</link>
<description>Webmasters and Developers forum current topics</description>
<language>en</language>
<copyright>Copyright 2007, dslreports.com</copyright>
<pubDate>Thu, 21 Aug 2008 12:36:28 EDT</pubDate>
<lastBuildDate>Thu, 21 Aug 2008 12:36:28 EDT</lastBuildDate>

<image>
<title>dslreports.com</title>
<url>http://i.dslr.net/bbrdisc1.gif</url>
<link>http://www.dslreports.com</link>
<width>19</width>
<height>18</height>
<description>bbr disc</description>
</image>

<item>
<title>PHP calculating age ranges when time stamp is useless</title>
<link>http://www.dslreports.com/forum/remark,20973642</link>
<description><![CDATA[Working on a little project where we have to determine user demographics and have come to the part where we determine the percentage of users in each age group:

less than 20
20 - 29
30 - 39
40 - 49
50 - 59
60 - 69
70 & greater

We have the users birth dates represented as Year-Month-Day and stored as a date datatype in MySQL.

The problem here is, on many systems, UNIX time stamps are not valid before 1970 and PHP/MySQL just reports back 0 as a stamp.

I wrote up a small function to make my own time stamp:

## Some fake timestamps to handle the infamous 1970 epoch problem for days only&#012;## Year-Month-Day&#012;function TimeStamp($date) {&#012; &#012;$date = preg_split("/-/",$date);&#012; &#012;$x = 1;&#012; &#012;while ($x &lt; $date&#91;1&#93;) {&#012; &#012;$mdays += cal_days_in_month(CAL_GREGORIAN, $x, $date&#91;0&#93;);&#012; &#012;$x++;&#012; &#012;}&#012; &#012;$mdays += $date&#91;2&#93;;&#012; &#012;return floor(($date&#91;0&#93; / 4) + (365 * $date&#91;0&#93;));&#012; &#012;}&#012;
Now of course, this is going to be off by a couple days here and there because of leap years, but I did my best to calculate them within reason.

I know there has to be a better way to do this, but am a bit out of ideas... Anyone?

--
Custom PHP/Perl Development.  Vbulletin And Wordpress Mods Too!]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20973642</guid>
<pubDate>2008-08-19 11:14:21</pubDate>
</item>

<item>
<title>Help with Jscript Code</title>
<link>http://www.dslreports.com/forum/remark,20972863</link>
<description><![CDATA[I have not done coding for a long time and have pretty much forgotten most of the basics. I have this following line in the code:

var Filename=prompt("Name of File?");&#012;var fso, s;&#012;   fso = new ActiveXObject("Scripting.FileSystemObject");&#012;   s = fso.OpenTextFile("C:\\My_Directory\\" + Filename + ".jbw" , ForReading, -1);&#012;   y=1;&#012;
I want to keep the code the way it is, however I want the program to be able to detect the drive letter, as I want it to run off a USB flash drive. 

I searched for some code online and I saw something like this:
Shell = WScript.CreateObject("WScript.Shell");&#012; &#012;USB = Shell.CurrentDirectory;       // Returns the drive letter where the .js script is located&#012;                                    // It is "F:\" on my system (different on others!!!)&#012;
However when I add that to the program and change it to
s = fso.OpenTextFile(USB + "My_Directory\\" + Filename + ".jbw" , ForReading, -1);
I get an error.

Can anyone recommend or help me out on what I should add to make it work.

--
Mastermind 4 Life &reg; &#153; &copy;]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20972863</guid>
<pubDate>2008-08-19 07:57:49</pubDate>
</item>

<item>
<title>Blog Software Question</title>
<link>http://www.dslreports.com/forum/remark,20962813</link>
<description><![CDATA[I am working on a site for a client and they want a blog(s) as a part of the site. I'm familiar with blogs as I use WordPress for my personal site. But that's just it. My personal site is a template I got online for Wordpress. I am wondering if there is some blog software that anyone knows of that allows me to just write something, submit it, and simple add a snippet of code into my already designed site that will displays all blog entries?
--
\m/(-_-)\m/
TMB :: HEM Designs :: Inviting Images]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20962813</guid>
<pubDate>2008-08-17 01:47:23</pubDate>
</item>

<item>
<title>Oracle 10G run report from forms.</title>
<link>http://www.dslreports.com/forum/remark,20956557</link>
<description><![CDATA[We just moved my development from 8i to 10g and things have overall gone smoother than expected, as far migrating goes.
I have run in to on brick wall that I just can't seem to pick out just right.  I have a form that the user enters data in to.  It then calls a report and gives stats and what-not.  Everything worked in 8i.  My code looks much like this:
PROCEDURE print_report IS&#012;  pl_id PARAMLIST := GET_PARAMETER_LIST('pl_bill_report');&#012;  report_id Report_Object := FIND_REPORT_OBJECT('GenericControlTotals');&#012;  v_rep VARCHAR2(100);&#012; &#012;BEGIN&#012; &#012;  SET_REPORT_OBJECT_PROPERTY(report_id, REPORT_COMM_MODE, ASYNCHRONOUS);&#012;  SET_REPORT_OBJECT_PROPERTY(report_id, REPORT_EXECUTION_MODE, RUNTIME);&#012;  SET_REPORT_OBJECT_PROPERTY(report_id, REPORT_DESTYPE, CACHE);&#012; &#012;  ADD_PARAMETER(pl_id, 'p_bill_date', TEXT_PARAMETER, TO_CHAR(:bill_date, 'MM/YY'));&#012;  ADD_PARAMETER(pl_id, 'p_ctr_key', TEXT_PARAMETER, :ctr_key);&#012;  ADD_PARAMETER(pl_id, 'p_process_name', TEXT_PARAMETER, :p_process_name);&#012; &#012;  v_rep := RUN_REPORT_OBJECT(report_id, pl_id);&#012;
The only major difference is that report_destype used to be SCREEN, but in 10g you can only use CACHE or FILE.
With Cache nothing happens.  If I do file and give it a destination it creates the PDF, but the PDF is 0 bytes.
If I run the Report manually in Reports Builder with paper layout everything works just fine.
I have spent hours reading over http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsrw10g.pdf but don't see that I have missed anything.

--
"Padre, nobody said war was fun now bowl!" - Sherman T Potter
http://www.cafepress.com/maxolasersquad
http://maxolasersquad.com/
http://maxolasersquad.com/network/ My DSL Network Guide
http://myspace.com/mlsquad]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20956557</guid>
<pubDate>2008-08-15 16:35:34</pubDate>
</item>

<item>
<title>Database design - am I normalizing this correctly?</title>
<link>http://www.dslreports.com/forum/remark,20977447</link>
<description><![CDATA[OK, so I'm writing an internal web app for my company...and I'm new to this...

I have two SQL tables, let's call them 'projects' and 'personnel'. I need to keep track of which personnel are involved with which project. I'm stuck on the concept that a variable number of personnel are likely involved with each project.

So: is it considered good, normailized database design to create a third table to store pairings of project_id and person_id ?

Any insight would be greatly appreciated.

Thanks!
--
May you always be prepared, and never need preparations like H.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20977447</guid>
<pubDate>2008-08-20 00:24:07</pubDate>
</item>

<item>
<title>Sunday Advertisements Type Flash</title>
<link>http://www.dslreports.com/forum/remark,20977245</link>
<description><![CDATA[Let's say I have an advertisement I want to publish to the web, but I want it done like how many companies do it:

http://circuitcity.shoplocal.com/circuitcity/Default.aspx?action=browsepageflash&storeid=2396863&rapid=575937&pagenumber=1&prvid=CircuitCity-080817&promotioncode=CircuitCity-080817

Anybody know of any free or cheap flash or other language scripts that will do that?

Thanks!
--
My BLOG!Black Friday Ads]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20977245</guid>
<pubDate>2008-08-19 23:33:25</pubDate>
</item>

<item>
<title>Realty Software</title>
<link>http://www.dslreports.com/forum/remark,20970804</link>
<description><![CDATA[I'm looking for something simple where I can have a rotating photo show up on my main site with the photo and basic listing info and if you click on the photo it takes you to the detailed info. Anyone know of any free software that can do this easily? I need to make it easy for a computer novice to use. Thanks in advance.
--
\m/(-_-)\m/
TMB :: HEM Designs :: Inviting Images]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20970804</guid>
<pubDate>2008-08-18 19:26:30</pubDate>
</item>

<item>
<title>PHP obfuscator/compiler/scrarmbler</title>
<link>http://www.dslreports.com/forum/remark,20968444</link>
<description><![CDATA[Hello,
I am looking for as free php "Compiler" working on a unix/linux server. I have many scripts, some mixed html and php.
Is PHPcoder a good idea?
Some suggestions,
Thanks for your help.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20968444</guid>
<pubDate>2008-08-18 12:17:00</pubDate>
</item>

<item>
<title>CSS Opacity</title>
<link>http://www.dslreports.com/forum/remark,20970841</link>
<description><![CDATA[OK, just did a search in the BBR archives and found a similar issue but the coder fixed it with a negative margin. My issue is that I won't know how far offset the div could be based on content included.

So, what I'm looking to do is have a fluid (height) div that will have a transparent color background so the background image comes through, however have the content in it at full opacity.

Here's my CSS code so far:
#dealsHere {&#012;float: left;&#012;margin: 15px 0 15px 15px;&#012;width: 480px;&#012;clear: right;&#012;}&#012; &#012;#dealsHere .dealBG {&#012;background-color:#fff;&#012;width: 470px;&#012;padding: 5px;&#012;filter:alpha(opacity=50);&#012;-moz-opacity:.50;&#012;opacity: .50;&#012;margin-bottom: 10px;&#012;}&#012;#dealsHere .deal {&#012;filter:alpha(opacity=100);&#012;-moz-opacity:1.0;&#012;opacity: 1.0;&#012;}&#012;
And my HTML code so far:
&lt;div id="dealsHere"&gt;&#012;    &lt;div class="dealBG"&gt;&#012;        &lt;div class="deal"&gt;&#012;        &lt;h3&gt;This is a deal here&lt;/h3&gt;&#012;            &lt;/div&gt;&#012;        &lt;/div&gt;&#012; &#012;    &lt;div class="dealBG"&gt;&#012;        &lt;div class="deal"&gt;&#012;        &lt;h3&gt;This is a deal here&lt;/h3&gt;&#012;            &lt;/div&gt;&#012;        &lt;/div&gt;&#012; &#012;    &lt;div class="dealBG"&gt;&#012;        &lt;div class="deal"&gt;&#012;        &lt;h3&gt;This is a deal here&lt;/h3&gt;&#012;            &lt;/div&gt;&#012;        &lt;/div&gt;&#012;    &lt;/div&gt;&#012;
Thanks for help. I haven't done much with opacity, but have noticed this is working in both FF and IE so that's a bonus!

--
# a b c d e f g h i j k l m n o p q r s t u v w x y]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20970841</guid>
<pubDate>2008-08-18 19:34:18</pubDate>
</item>

<item>
<title>Dropdown Menu Help</title>
<link>http://www.dslreports.com/forum/remark,20970795</link>
<description><![CDATA[Nevermind.

--
\m/(-_-)\m/
TMB :: HEM Designs :: Inviting Images]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,20970795</guid>
<pubDate>2008-08-18 19:25:12</pubDate>
</item>

</channel>
</rss>
