Im trying to serach through my database and find who referred who this is what I need. I need @refferal to contain like this
$refferal[0] = "1|2|3|4" #first refferals
$refferal[1] = "1|2|3|4|5|6" #second refferals
$refferal[2] = "1|2|3" #third refferals
And this is the code I tried it with.
#Get Reffers
my @ref;
(@reffer) = build_reffers($mem_info[2]);
## Build Refferal List
sub build_reffers {
$REF = shift;
$sth = $dbh->prepare("SELECT username FROM wbwm_members WHERE reffera
+l='$REF'");
$sth->execute;
while($username = $sth->fetchrow_array) {
push(@users, $username);
}
$users = join(/\|/, @users);
push(@ref, $users);
foreach $name (@users) {
build_reffers($name);
}
return(@ref);
}
Now were it freezes my page is this section
foreach $name (@users) {
build_reffers($name);
}
I dont get how that is freezing the page. This little script im tring to do is finding the first level refferals, and the second level, and so on. Like a first level would reffer a second so, $reffer[0] reffered a $reffer[1]
edited: Tue Nov 5 04:10:04 2002
by jeffa - s/\[/[/g
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.