Zero2Cool
15 years ago
I'd like to use an array.

The array would be declared like this...
$varArray(0 to 16, 2)



$varArray(x, 1) = $strGame
$varArray(x, 2) = $strSelection

Then I'd use a for loop to go through each and send each to the db. There's more to this, obviously, but is this possible with PHP?
UserPostedImage
Zero2Cool
15 years ago
I hate PHP. Hate.
UserPostedImage
dhpackr
15 years ago
Zero,
as far as using an array, the best way to use an array would be to populate a drop down list. radio buttons and drop down lists kind of work in the same manner.

you can give the end user many choices, but only one selection will be processed.

do not make it harder than you have to. using radio buttons will work fine, you'll just need 16 variables.

the code I posted will work for you. if you want to show the selection in a db instead of a 1 or 0, maybe use a drop down list instead. like this

<tr>
<td>02</td>
<td>
<?----start php

$01s = array("Packers","Bengals");

if (empty($01s[0])) {
echo '<input type="text" name="01" class="textbox" value="' . $01. '" maxlength="255" />' . "\n";
}
else {
?>
<select name="01" class="textbox">
<option value="">-- please select --</option>
<?
// Print out position options
for ($i = 0; $i < count($01s); $i++) {
echo '<option value="' . $01s[$i] . '"';
if($01s[$i]==$01){echo " selected ";}
echo ">" . $01s[$i] . "</option> \n";
}
?>
</select>
<?
}
?>
</td>
</tr>
So if you meet me Have some courtesy, Have some sympathy, and some taste
Use all your well-learned politesse, Or I'll lay your soul to waste
dhpackr
15 years ago

I hate PHP. Hate.

"Zero2Cool" wrote:



lol, what u learned in school only scratches the surface of programming. I was lucky to have worked with the guy that hired me out of school. Dude was completely insane. totally bipolar, but man did he know vb6, vb.net, classic asp, IIS, sql. he gave me a book on coldfusion, a 40 hour week and told me to create some database driven order forms. I did it.

next was classic asp, which I wish I could've stuck with. safe, secure database driven websites with nothing but notepad. I was given a 40 work week to create some database driven order forms, and I completed that project and 1 other. after that i did a financial program in vb6 and then another in vb.net that was sold for 5 grand multiple times.

that was in my first 6 months of work. then came ektron and vb.net. i did that and was getting really good with vb.net for bout the next 9 months when i was laid off. i really think a senior programmer got a little nervous about how I was attacking all my projects and pulled the cord on my job to try and save his.

but a month after i got laid off i got this part time php gig. no experience in php, no training, just cut loose on live web forms, and service tickets.

just stick with it and you will get it. just remember, you may be editing as many as 3-4 files and several functions in each file every time you try and add something or change something.

this program will take some maintenance, which is why I am interested. I could always use another job reference, and would be willing to write some code for you.

if you decide to whip it yourself, cool, i wish you the best.
lol, little different than vb.net and using datagrids, which BTW, I may have some Ektron opportunities coming up.

you'll be fine. put the code i gave you in the file you sent me. that file you sent to me, that is what I would consider a "TEMPLATE" file.

the validation code would go in a class file.
So if you meet me Have some courtesy, Have some sympathy, and some taste
Use all your well-learned politesse, Or I'll lay your soul to waste
Zero2Cool
15 years ago
Why is everything so freaking complicated in PHP?

in VB ... piece of cake!

'declare array
Public strMaster(0 To 4000, 3) As String

'increment index
x = x + 1

'fill array
strMaster(x, 1) = strGrame
strMaster(x, 2) = strSelection


'and to pull the data out
For i As Integer = 0 To x
     strSendGame = strMaster(i, 1)
     strSendSelection = strMaster(i, 2)
            'do work here to send each game number and selection to db
Next x


Now why can't I do that with PHP? From what I've seen of it, PHP is a very tool enriched language but how do you increment the darn index of the array dynamically?
UserPostedImage
Zero2Cool
15 years ago

I hate PHP. Hate.

"dhpackr" wrote:



lol, what u learned in school only scratches the surface of programming. I was lucky to have worked with the guy that hired me out of school. Dude was completely insane. totally bipolar, but man did he know vb6, vb.net, classic asp, IIS, sql. he gave me a book on coldfusion, a 40 hour week and told me to create some database driven order forms. I did it.

next was classic asp, which I wish I could've stuck with. safe, secure database driven websites with nothing but notepad. I was given a 40 work week to create some database driven order forms, and I completed that project and 1 other. after that i did a financial program in vb6 and then another in vb.net that was sold for 5 grand multiple times.

that was in my first 6 months of work. then came ektron and vb.net. i did that and was getting really good with vb.net for bout the next 9 months when i was laid off. i really think a senior programmer got a little nervous about how I was attacking all my projects and pulled the cord on my job to try and save his.

but a month after i got laid off i got this part time php gig. no experience in php, no training, just cut loose on live web forms, and service tickets.

just stick with it and you will get it. just remember, you may be editing as many as 3-4 files and several functions in each file every time you try and add something or change something.

this program will take some maintenance, which is why I am interested. I could always use another job reference, and would be willing to write some code for you.

if you decide to whip it yourself, cool, i wish you the best.
lol, little different than vb.net and using datagrids, which BTW, I may have some Ektron opportunities coming up.

you'll be fine. put the code i gave you in the file you sent me. that file you sent to me, that is what I would consider a "TEMPLATE" file.

the validation code would go in a class file.

"Zero2Cool" wrote:



It's so freaking frustrating! Everything I've learned with programming, doesn't work with PHP!! I can't even figure out how to increment the index of a flipping two dimensional array.

Another reason I like VB, the IDE can be used as a tool with intellisense. I'm not so lucky with PHP, even dreamweaver is no help, lol.


I did try the code you gave me and it didn't work. It was sending '0' or '1' and if it wasn't checked, it did do anything. Not sure how I screwed it up, but I must have somewhere along the lines.

If I have to make a 16 Week##.php files, I'm down with that. But I need one to work first in the scope I'm aiming for.

I thought once I had the link issue resolved it'd be a snap because all languages use arrays in a similar fashion. WRONG! lol
UserPostedImage
dhpackr
15 years ago

Why is everything so freaking complicated in PHP?

in VB ... piece of cake!

'declare array
Public strMaster(0 To 4000, 3) As String

'increment index
x = x + 1

'fill array
strMaster(x, 1) = strGrame
strMaster(x, 2) = strSelection


'and to pull the data out
For i As Integer = 0 To x
     strSendGame = strMaster(i, 1)
     strSendSelection = strMaster(i, 2)
            'do work here to send each game number and selection to db
Next x


Now why can't I do that with PHP? From what I've seen of it, PHP is a very tool enriched language but how do you increment the darn index of the array dynamically?

"Zero2Cool" wrote:



like this
for ($i = 0; $i < count($01s); $i++) {
echo '<option value="' . $01s[$i] . '"';
if($01s[$i]==$01){echo " selected ";}
echo ">" . $01s[$i] . "</option> \n";
So if you meet me Have some courtesy, Have some sympathy, and some taste
Use all your well-learned politesse, Or I'll lay your soul to waste
dhpackr
15 years ago



I did try the code you gave me and it didn't work. It was sending '0' or '1' and if it wasn't checked, it did do anything. Not sure how I screwed it up, but I must have somewhere along the lines.

"Zero2Cool" wrote:



ok, that is what a radio button will do. if it is checked, you will see a 1 in the database. if not a 0 will appear. then you need to add that validation function so the user has to make a selection. Next you can write a function to display the users picks on a web page. just copy and paste the code into another file to display the selection.

if you want to see the selection in the database, i would suggest using a drop down list, populate with an array and then recycle this code 15 times with different variables and different arrays.

here is two picks


<tr>
<td >Pick1</td>
<td>
<?

$01s = array("Packers","Bengals");

if (empty($01s[0])) {
echo '<input type="text" name="01" class="textbox" value="' . $01. '" maxlength="255" />' . "\n";
}
else {
?>
<select name="01" class="textbox">
<option value="">-- please select --</option>
<?
// Print out position options
for ($i = 0; $i < count($01s); $i++) {
echo '<option value="' . $01s[$i] . '"';
if($01s[$i]==$01){echo " selected ";}
echo ">" . $01s[$i] . "</option> \n";
}
?>
</select>
<?
}
?>
</td>
</tr>
<tr>
<td >Pick2</td>
<td>
<?

$02s = array("Vikings","Lions");

if (empty($02s[0])) {
echo '<input type="text" name="02" class="textbox" value="' . $02. '" maxlength="255" />' . "\n";
}
else {
?>
<select name="02" class="textbox">
<option value="">-- please select --</option>
<?
// Print out position options
for ($i = 0; $i < count($02s); $i++) {
echo '<option value="' . $02s[$i] . '"';
if($02s[$i]==$02){echo " selected ";}
echo ">" . $02s[$i] . "</option> \n";
}
?>
</select>
<?
}
?>
</td>
</tr>


like i wrote, if you want the actual selection text to show up in the database, use a dropdownlist.

a radio button will display a 1 or 0 in the database, not the text, so i think my code worked properly.
So if you meet me Have some courtesy, Have some sympathy, and some taste
Use all your well-learned politesse, Or I'll lay your soul to waste
Zero2Cool
15 years ago

like this
[php]
for ($i = 0; $i < count($01s); $i++) {
echo '<option value="' . $01s[$i] . '"';
if($01s[$i]==$01){echo " selected ";}
echo ">" . $01s[$i] . "</option> \n";
[/php]

"dhpackr" wrote:




That is way over my head and doesn't look remotely close to what I posted (which makes sense cuz mine was in .NET), lol.

Isn't there a curly bracket missing in there? I see two open and only one close?
UserPostedImage
Zero2Cool
15 years ago
[php]$int = 0;
// see if the GET variable "picks" is set
if(isset($_GET["picks"]))
{
// if picks is equal to "yes" proceed
if($_GET["picks"] == "yes")
{
echo "<strong>You picked the following winners:</strong><br />";
// if variable $x is less than the total number of games, add 1 to $x
for($x = 0; $x <= 16; $x++)
{
// check games
if($x < 10)
{
$x = "0" . $x . "";
}
if(isset($_POST["rdoGame" . $x . ""]))
{
// do whatever you want with each game right here
if($x != "1") {echo " ";}
//echo $_POST["rdoGame" . $x . ""] . "";
$strMember = $nick;
$strWeek = "01";
$strGame = $x;
$strSelection = $_POST["rdoGame" . $x . ""] . "";
$strTimeStamp = date("Ymd : His");
$int++;
echo $int . " number.";
$varSelection[$int] = array_fill($x, $strSelection);
}
}
echo $varSelection[0][0] . " - " . $varSelection[0][1] . "<br>";
echo $varSelection[1][0] . " - " . $varSelection[1][1] . "<br>";
echo $varSelection[2][0] . " - " . $varSelection[2][1] . "<br>";

echo "<br /><br />";
mysql_close($conMySQL);
}
}[/php]


See the mess I've created? lol

If I make three selections, the three 'echo' at the bottom there should show those three selections as ...

01 - Steelers
02 - Dolphins
03 - Broncos


But for some sweet reason, the array's index is not incrementing.
UserPostedImage
Fan Shout
beast (19h) : But the Return from IR designations had to be applied by the 53 man cutdown.
beast (19h) : It's a new rule, so it's not clear, but my understanding was that they could be IR'd at any time
Mucky Tundra (8-Aug) : *had to be IRed at 53
Mucky Tundra (8-Aug) : beast, I thought the designate return from IR players had to be IR at cutdowns to 53, not before
beast (8-Aug) : It's a brand new rule, either last season or this season, prior, all pre-season IRs were done for the season
beast (8-Aug) : But the Packers would have to use one for their return from IR spots on him, when they cut down to 53.
beast (8-Aug) : I think the NFL recently changed the IR rules, so maybe the season might not be over for OL Glover.
Zero2Cool (8-Aug) : Packers star Howton, first NFLPA prez, dies at 95 😔
dfosterf (8-Aug) : Apparently it is too complicated for several to follow your simple instructions, but I digress
dfosterf (8-Aug) : Zero- Did you see what I posted about Voice of Reason and his wife? She posted over at fleaflicker that they are both "In"
Zero2Cool (7-Aug) : Well, not crazy, it makes sense. Crazy I didn't notice/find it earlier
Zero2Cool (7-Aug) : it's crazy how one stored procedure to get data bogged everything down for speed here
dfosterf (7-Aug) : to herd cats or goldfish without a bowl. They reminded me of the annual assembly of our fantasy league
dfosterf (7-Aug) : out on a field trip, outfitting them with little yellow smocks. Most of the little folk were well behaved, but several were like trying
dfosterf (7-Aug) : Yesterday my wife and I spent the afternoon on the waterfront here in Alexandria, Va. A daycare company took about 15 three/four year olds
wpr (7-Aug) : seems faster. yay
dfosterf (7-Aug) : Wife of reason posted on the in/out thread on fleaflicker that both she and vor are in
Zero2Cool (7-Aug) : This page was generated in 0.135 seconds.
Mucky Tundra (7-Aug) : Tbh, I can never tell the difference in speed unless it's completely shitting the bed
Zero2Cool (7-Aug) : Sure does feel like site is more snappy
Zero2Cool (6-Aug) : I thought that was the Lions OL
Mucky Tundra (6-Aug) : Travis Glover placed on IR; seasons over for him
Zero2Cool (6-Aug) : found bad sql in database, maybe site faster now?
dfosterf (5-Aug) : I'm going to call that a good move.
Zero2Cool (4-Aug) : Packers sign CB Corey Ballentine
Zero2Cool (4-Aug) : I'm not sure how to kill the draft order just yet so it's not so confusing.
Mucky Tundra (4-Aug) : *to be able
Mucky Tundra (4-Aug) : and because it's not a dynasty league (which makes a lot more sense to be ability to trade picks)
Mucky Tundra (4-Aug) : Oh I know; I was just exploring and it blew my mind that you could trade picks because of the whole reordering thing
Mucky Tundra (4-Aug) : Zero, I think I preferred my offer: your 1st for my 15th rounder
Zero2Cool (4-Aug) : Keep in mind, we do a draft reorder once all members locked in
Zero2Cool (4-Aug) : You can have my 12th Rd for your 2nd round
Mucky Tundra (4-Aug) : Hey i didn't know we could trade picks in fantasy
Mucky Tundra (3-Aug) : Update: Rock has tried a cheese curd, promises it's not his last
Zero2Cool (3-Aug) : watch it!! lol
Mucky Tundra (3-Aug) : you're right, we never did leave, the site just went down :P
Mucky Tundra (3-Aug) : Rock claims to have never eaten a cheese curd
Zero2Cool (3-Aug) : We did not leave.
Mucky Tundra (3-Aug) : Family Night! WE ARE SO BACK!
Mucky Tundra (2-Aug) : To this day, I'm still miffed about his 4 TD game against Dallas on Thanksgiving going to waste
Martha Careful (2-Aug) : Congratulations Sterling Sharpe. He was terrific and I loved watching him play.
beast (2-Aug) : I believe it's technically against the CBA rules, but Jerry just calls it a simple unofficial chat... and somehow gets away with it.
beast (2-Aug) : Jerry Jones is infamous for ̶n̶e̶g̶o̶t̶i̶a̶t̶i̶n̶g̶ chatting with players one on one... and going around the agent.
Mucky Tundra (1-Aug) : Oo just saw a blurb saying that Dallas negotiated directly with Parsons and not through his agent
Mucky Tundra (1-Aug) : I assumed that both guys will get paid, just a matter of when or how we get there
Zero2Cool (1-Aug) : McLaurin nor Micah going anywhere. They will get money
Mucky Tundra (1-Aug) : the Synder years or do they take care of one of their own?
Mucky Tundra (1-Aug) : Do the Commanders risk losing a top WR with an emerging QB just because he's turning 30 and potentially risk damaging the rebuild from
Mucky Tundra (1-Aug) : Turns 30 this September, plays at a high level and Washington has some cap space I believe
Mucky Tundra (1-Aug) : More interesting is Washington with Terry McLaurin
Please sign in to use Fan Shout
2025 Packers Schedule
Sunday, Sep 7 @ 3:25 PM
LIONS
Thursday, Sep 11 @ 7:15 PM
COMMANDERS
Sunday, Sep 21 @ 12:00 PM
Browns
Sunday, Sep 28 @ 7:20 PM
Cowboys
Sunday, Oct 12 @ 3:25 PM
BENGALS
Sunday, Oct 19 @ 3:25 PM
Cardinals
Sunday, Oct 26 @ 7:20 PM
Steelers
Sunday, Nov 2 @ 12:00 PM
PANTHERS
Monday, Nov 10 @ 7:15 PM
EAGLES
Sunday, Nov 16 @ 12:00 PM
Giants
Sunday, Nov 23 @ 12:00 PM
VIKINGS
Thursday, Nov 27 @ 12:00 PM
Lions
Sunday, Dec 7 @ 12:00 PM
BEARS
Sunday, Dec 14 @ 3:25 PM
Broncos
Friday, Dec 19 @ 11:00 PM
Bears
Friday, Dec 26 @ 11:00 PM
RAVENS
Saturday, Jan 3 @ 11:00 PM
Vikings
Recent Topics
3h / Green Bay Packers Talk / Zero2Cool

8-Aug / Around The NFL / Zero2Cool

8-Aug / Fantasy Sports Talk / packerfanoutwest

8-Aug / Green Bay Packers Talk / beast

7-Aug / Green Bay Packers Talk / beast

5-Aug / Green Bay Packers Talk / beast

4-Aug / Green Bay Packers Talk / bboystyle

3-Aug / Green Bay Packers Talk / Mucky Tundra

3-Aug / Green Bay Packers Talk / beast

3-Aug / Feedback, Suggestions and Issues / Zero2Cool

2-Aug / Green Bay Packers Talk / Mucky Tundra

2-Aug / Green Bay Packers Talk / wpr

28-Jul / Random Babble / Zero2Cool

28-Jul / Green Bay Packers Talk / Mucky Tundra

28-Jul / Green Bay Packers Talk / Mucky Tundra

Headlines
Copyright © 2006 - 2025 PackersHome.com™. All Rights Reserved.