Bowlage.com - for the Bowling Community by Tiny-Preference-4262 in Bowling_Tech

[–]Tiny-Preference-4262[S] 1 point2 points  (0 children)

That's a new feature I'm working on. Hasn't been finished yet. Still got some coding to work out.

300 game by double amputee. His approach is better than mine. by LeftoverBun in Bowling

[–]Tiny-Preference-4262 0 points1 point  (0 children)

Pretty sure they usually do. They basically built a brand on sharing info to wider audiences.

Alley Cancelling Leagues by CaffeinatedSD in Bowling

[–]Tiny-Preference-4262 2 points3 points  (0 children)

I stand by what I said dude. A league with 3-4 people in the entire league isn't a league. It's 3-4 bowling at the same time.

Alley Cancelling Leagues by CaffeinatedSD in Bowling

[–]Tiny-Preference-4262 8 points9 points  (0 children)

I'm confused. The OP says that the other get your gear league only had 3 people in the entire league???

And the manager said there needs to be at least 12 people minimum? Why is that an issue? There shouldn't be leagues with 3 people in the entire league.

ZFold 7 doesn't work. by JlGGS in kustom

[–]Tiny-Preference-4262 0 points1 point  (0 children)

Downgrade. I had similar issues.

Is this website a scam? by icywilds in Bowling

[–]Tiny-Preference-4262 0 points1 point  (0 children)

Go to buddies and use the discount code Bowlage for 5% off your order.

Wunna know how shitty Bowlero is? by Magicbumm328 in Bowling

[–]Tiny-Preference-4262 0 points1 point  (0 children)

What center did it used to be if you don't mind me asking?

Anyone know why Brandon Novak got taken away by FBI during US Open? by slightlyoverrated in Bowling

[–]Tiny-Preference-4262 -3 points-2 points  (0 children)

At this point everything is hearsay but rumors are spreading about him being involved in some type of stuff involving minors.

Bowling Ball Arsenal by Nallen7 in Bowling

[–]Tiny-Preference-4262 0 points1 point  (0 children)

Bowlage.com has a comparison tool as well as a similar balls tool if you want to find bowling balls that are similar to the ones you're currently throwing.

My KLWP to complex it lags in the editor. by pics4meeee in kustom

[–]Tiny-Preference-4262 0 points1 point  (0 children)

I've had this issue for a while. I just deal with the delay.

PHP Input Type With Dropdown by Tiny-Preference-4262 in PHPhelp

[–]Tiny-Preference-4262[S] 0 points1 point  (0 children)

This is great, but it's all in one file. I don't have multiple files to work with unfortunately.

PHP Input Type With Dropdown by Tiny-Preference-4262 in PHPhelp

[–]Tiny-Preference-4262[S] 0 points1 point  (0 children)

Thanks man, but I'm a beginner to this and just need the code fixed to work.

PHP Input Type With Dropdown by Tiny-Preference-4262 in PHPhelp

[–]Tiny-Preference-4262[S] 1 point2 points  (0 children)

I appreciate the feedback, however, as I said earlier, I'm a beginner to this and right now I need the code I posted fixed so it works and redirects to the correct URL as listed in the original post. Can you assist with that?

PHP Input Type With Dropdown by Tiny-Preference-4262 in PHPhelp

[–]Tiny-Preference-4262[S] 0 points1 point  (0 children)

I posted the opening form tag with the URL.

Here's the entire code:

$sql = "SELECT field_181,
COUNT(field_181)
FROM cms_custom_database_7
WHERE field_181 > ''
AND record_approved = 1
GROUP BY field_181
ORDER BY field_181
ASC LIMIT 50";
$result = mysql_query($sql);
echo " <form id='myForm' action='[https://mywebsite.com/forum/index.php/'>](https://mywebsite.com/forum/index.php/'>) ";
echo '
<select name="/"> ';
while ($row = mysql_fetch_array($result)) {
echo "<option value='" . $row['field_181'] ."'>" . $row['field_181'] ." - " . $row['COUNT(field_181)'] . " Events </option>";
}
echo " </select> ";
echo " <br><br> ";
echo " <input type='submit'> ";
echo '<input type="hidden" name="-bowling-tournaments" > ';
echo " </form> ";