Zero2Cool
15 years ago
Okay, effective, umm, now. No more host switching until next off season. I'm going to focus on learning PHP in a similar fashion that I know ASP.NET.

Click HERE  to see the page.


Building the form, easy.
Coding the connection to the database, easy.
Grabbing the values from the radio buttons and storing them into variables to transfer to a database, kicking my ass.

I think I'm attacking this wrong because I'm using HTML code, but shouldn't I be able to use straight PHP code throughout?


Edit, here's how I'm starting out ...
http://w3schools.com/php/php_syntax.asp 

lol
UserPostedImage
IronMan
15 years ago
I have no idea what you are talking about, but thanks for keeping this site running!
djcubez
15 years ago
I'm not sure this will help you understand, my comments might not be helpful if you're just learning.

Save this as "pickem.php":

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Poop</title>
</head>

<?php 
// start php

// 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 the GET variable "picks" is set, show picks
		// variables for the form are stored in an array called $_POST[]
		// the value for the array is the name of the input field i.e., rdoGame01
		// go through the post variable and display picks
		// assign variables
		$games = 16;	// number of games
		// 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 . ""] . "";
			}
		}
		echo "<br /><br />";
	}
}

?>

<body>
<form action="pickem.php?picks=yes" method="post">
<table width="372" border="1">
  <tr>
    <td colspan="4"><div align="center">Week One </div></td>
  </tr>

  <tr>
    <td width="56">Thursday</td>
    <td width="127"><input name="rdoGame01" type="radio" value="Titans" />
      Tenneesee </td>
    <td width="17">at</td>
    <td width="144"><input name="rdoGame01" type="radio" value="Steelers" />
      Pittsburgh</td>

  </tr>
 <tr>
    <td height="24">Sunday</td>
    <td><input name="rdoGame02" type="radio" value="Dolphins" />
      Miami </td>
    <td>at</td>
    <td><input name="rdoGame02" type="radio" value="Falcons" />

      Atlanta</td>
  </tr>
  <tr>
    <td>Sunday</td>
    <td><input name="rdoGame03" type="radio" value="Broncos" />
      Denver </td>
    <td>at</td>

    <td><input name="rdoGame03" type="radio" value="Bengals" />
      Cincinnati</td>
  </tr>
  <tr>
    <td>Sunday</td>
    <td><input name="rdoGame04" type="radio" value="Packers" />
      Minnesota </td>

    <td>at</td>
    <td><input name="rdoGame04" type="radio" value="Packers" />
      Cleveland</td>
  </tr>
  <tr>
    <td>Sunday</td>
    <td><input name="rdoGame05" type="radio" value="Packers" />

      Jacksonville </td>
    <td>at</td>
    <td><input name="rdoGame05" type="radio" value="Packers" />
      Indianapolis</td>
  </tr>
  <tr>
    <td>Sunday</td>

    <td><input name="rdoGame06" type="radio" value="Packers" />
      Detroit </td>
    <td>at</td>
    <td><input name="rdoGame06" type="radio" value="Packers" />
      New Orleans</td>
  </tr>
  <tr>

    <td>Sunday</td>
    <td><input name="rdoGame07" type="radio" value="Packers" />
      Dallas </td>
    <td>at</td>
    <td><input name="rdoGame07" type="radio" value="Packers" />
      Tampa Bay</td>
  </tr>

  <tr>
    <td>Sunday</td>
    <td><input name="rdoGame08" type="radio" value="Packers" />
      Philadelphia </td>
    <td>at</td>
    <td><input name="rdoGame08" type="radio" value="Packers" />
      Carolina</td>

  </tr>
  <tr>
    <td>Sunday</td>
    <td><input name="rdoGame09" type="radio" value="Packers" />
      Kansas City</td>
    <td>at</td>
    <td><input name="rdoGame09" type="radio" value="Packers" />

      Baltimore</td>
  </tr>
  <tr>
    <td>Sunday</td>
    <td><input name="rdoGame10" type="radio" value="Packers" />
      NY Jets</td>
    <td>at</td>

    <td><input name="rdoGame10" type="radio" value="Packers" />
      Houston</td>
  </tr>
  <tr>
    <td>Sunday</td>
    <td><input name="rdoGame11" type="radio" value="Packers" />
      Washington </td>

    <td>at</td>
    <td><input name="rdoGame11" type="radio" value="Packers" />
      NY Giants</td>
  </tr>
  <tr>
    <td>Sunday</td>
    <td><input name="rdoGame12" type="radio" value="Packers" />

      San Francisco</td>
    <td>at</td>
    <td><input name="rdoGame12" type="radio" value="Packers" />
      Arizona</td>
  </tr>
  <tr>
    <td>Sunday</td>

    <td><input name="rdoGame13" type="radio" value="Packers" />
      St. Louis</td>
    <td>at</td>
    <td><input name="rdoGame13" type="radio" value="Packers" />
      Seattle</td>
  </tr>
  <tr>

    <td>Sunday</td>
    <td><input name="rdoGame14" type="radio" value="Packers" />
      Chicago </td>
    <td>at</td>
    <td><input name="rdoGame14" type="radio" value="Packers" />
      Green Bay</td>
  </tr>

  <tr>
    <td>Monday</td>
    <td><input name="rdoGame15" type="radio" value="Packers" />
      Buffalo </td>
    <td>at</td>
    <td><input name="rdoGame15" type="radio" value="Packers" />
      New England</td>

  </tr>
  <tr>
    <td>Monday</td>
    <td><input name="rdoGame16" type="radio" value="Packers" />
      San Diego</td>
    <td>at</td>
    <td><input name="rdoGame16" type="radio" value="Packers" />

      Oakland</td>
  </tr>
 
</table>
<div><input type="submit" value="Submit Picks" /></div></form>
<p> </p>
</body>
</html>
Zero2Cool
15 years ago
Very awesome of you, thank you for taking the time to do that. Unfortunately, I have to go to sleep now, but hopefully I can spend some time on this tomorrow.
UserPostedImage
dhazer
15 years ago
good job dj +1 for the code
Just Imagine this for the next 6-9 years. What a ride it will be 🙂 (PS, Zero should charge for this)
UserPostedImage
Rockmolder
15 years ago

I have no idea what you are talking about, but thanks for keeping this site running!

"IronMan" wrote:

Porforis
15 years ago
As crazy inefficient as it is, this makes me miss Visual Basic (6, of course. None of that .net sorcery). As a kid I'd spend afternoons and weekends experimenting with code, not having the slightest clue what I was doing until I got it to work and figured out why. Nowadays I'm working with shell scripts (linux), I miss that fluid feel VB6 had. Didn't miss having to make API calls for some more advanced graphical manipulation and trying to learn directx, but at its core it was streamlined and not as unusable for higher-end applications as most people say...

Regardless, a bit off-topic I suppose. I guess some people like making websites, some people like making computer games, and then there's database nerds. 😛
Grabacr
15 years ago
Hooray...only spent $20000 on college so far and i understand the code....the system works!

good job man. Will have to see what i come up with in my spare time when im back at college
UserPostedImage
djcubez
15 years ago

good job dj +1 for the code

"dhazer" wrote:


Maybe I'll finally have to take you off my ignore list now :P

I feel like I click to read your posts half the time anyway hah.

@DKF295: I remember being a kid (not too long ago, in fact i'm probably still one now) and doing the same thing, albeit with websites. My dad was a website designer for over a decade so I kind of picked up the tools of the trade at a young age--not because I had too but because I found it fun.

@grabacr: I haven't learned an ounce about PHP or web design in college. In fact my teacher gave me a B in my web design course because she disliked that I knew almost everything already. I'm not saying I'm a genius or anything or that you won't learn anything in college, I just happen to learn things better on my own.
Zero2Cool
15 years ago
dj, would you be willing to help me with this project? You're PHP skills are far superior to mine. I'm only good editing existing code. I could figure it out on my own, but having a genius help me would speed things up for shizzle.
UserPostedImage
Fan Shout
beast (19m) : Someone pointed out, with Raiders hiring Carroll, the division games between Carroll and Jim Harbaugh are back on (who can whine more games)
beast (5h) : I'm confused, Pete Carroll and Brian Schottenheimer? When Todd Monken, Joe Brady, Kellen Moore, Kliff Kingsbury and Zac Robinson are availab
Zero2Cool (8h) : Any reason I'm catching a shot here about my intelligence?
Martha Careful (25-Jan) : thank you Mucky for sticking up for me
Martha Careful (25-Jan) : some of those people are smarter than you zero. However Pete Carroll is not
Mucky Tundra (24-Jan) : Rude!
beast (24-Jan) : Martha? 😋
Zero2Cool (24-Jan) : Raiders hired someone from the elderly home.
dfosterf (24-Jan) : I'm going with a combination of the two.
beast (24-Jan) : Either the Cowboys have no idea what they're doing, or they're targeting their former OC, currently the Eagles OC
Zero2Cool (23-Jan) : Fake news. Cowboys say no
Zero2Cool (23-Jan) : Mystery candidate in the Cowboys head coaching search believed to be Packers ST Coordinator Rich Bisaccia.
beast (23-Jan) : Also why do both NYC teams have absolutely horrible OL for over a decade?
beast (23-Jan) : I wonder why the Jets always hire defensive coaches to be head coach
Zero2Cool (22-Jan) : Still HC positions available out there. I wonder if Hafley pops up for one
Zero2Cool (22-Jan) : Trent Baalke is out as the Jaguars GM.
dfosterf (22-Jan) : Jeff Hafley would have been a better choice, fortunately they don't know that. Someone will figure that out next off season
Zero2Cool (22-Jan) : Aaron Glenn Planning To Take Jets HC Job
dfosterf (22-Jan) : Martha- C'est mon boulot! 😁
Zero2Cool (22-Jan) : Thank you
wpr (22-Jan) : Z, glad you are feeling better.
wpr (22-Jan) : My son and D-I-L work for UM. It's a way to pick on them.
Zero2Cool (22-Jan) : Thank you. I rarely get sick, and even more rarely sick to the point I can't work.
wpr (22-Jan) : Beast- back to yesterday, I CAN say OSU your have been Michigan IF the odds of making the playoffs were more urgent.
dfosterf (22-Jan) : Glad to hear you are feeling a bit better.
Zero2Cool (22-Jan) : I've been near death ill last several days, finally feel less dead and site issues.
Zero2Cool (22-Jan) : It is a big deal. This host is having issues. It's frustrating.
Martha Careful (22-Jan) : just kidding...it was down
Martha Careful (22-Jan) : you were blocked yesterday, due to a a recalcitrant demeanor yesterday in the penalty box for a recalcitrant demeanor
dfosterf (22-Jan) : Was that site shutdown on your end or mine? No big deal, just curious
beast (21-Jan) : That way teams like Indiana and SMU don't make the conference championships by simply avoiding all the other good teams in their own confere
beast (21-Jan) : Also, with these "Super Conferences" instead of a single conference champion, have 4 teams make a Conference playoffs.
beast (21-Jan) : Also in college football, is a bye week a good or bad thing?
Martha Careful (21-Jan) : The tournament format was fine. Seeding could use some work.
beast (21-Jan) : You can't assume Ohio State would of won the Michigan game...
beast (21-Jan) : Rankings were 1) Oregon 2) Georgia 3) Texas 4) Penn State 5) Notre Dame 6) Ohio State, none of the rest mattered
wpr (21-Jan) : Texas, ND and OSU would have been fighting for the final 2 slots.
wpr (21-Jan) : Oregon and Georgia were locks. Without the luxury of extra playoff berths, Ohios St would have been more focused on Michigan game.
wpr (21-Jan) : Zero, no. If there were only 4 teams Ohio State would have been one of them. Boise St and ASU would not have been selected.
Zero2Cool (21-Jan) : So that was 7 vs 8, that means in BCS they never would made it?
Martha Careful (21-Jan) : A great game. Give ND credit for coming back, although I am please with the outcome.
Mucky Tundra (21-Jan) : FG to make it academic
Mucky Tundra (21-Jan) : and there's the dagger
Mucky Tundra (21-Jan) : ooooo 8 point game with 4 minutes to go!
Mucky Tundra (21-Jan) : ooooooooohhhhhh he missed!
Mucky Tundra (21-Jan) : Ooooo that completion makes things VERY interesting
Mucky Tundra (21-Jan) : Game not over yet
beast (21-Jan) : Oh yeah, Georgia starting quarterback season ending elbow injury
beast (21-Jan) : Sadly something happened to Georgia... they should be playing in this game against Ohio State
beast (21-Jan) : I thought Ohio State and Texas were both better than Notre Dame & Penn State
Please sign in to use Fan Shout
2024 Packers Schedule
Friday, Sep 6 @ 7:15 PM
Eagles
Sunday, Sep 15 @ 12:00 PM
COLTS
Sunday, Sep 22 @ 12:00 PM
Titans
Sunday, Sep 29 @ 12:00 PM
VIKINGS
Sunday, Oct 6 @ 3:25 PM
Rams
Sunday, Oct 13 @ 12:00 PM
CARDINALS
Sunday, Oct 20 @ 12:00 PM
TEXANS
Sunday, Oct 27 @ 12:00 PM
Jaguars
Sunday, Nov 3 @ 3:25 PM
LIONS
Sunday, Nov 17 @ 12:00 PM
Bears
Sunday, Nov 24 @ 3:25 PM
49ERS
Thursday, Nov 28 @ 7:20 PM
DOLPHINS
Thursday, Dec 5 @ 7:15 PM
Lions
Sunday, Dec 15 @ 7:20 PM
Seahawks
Monday, Dec 23 @ 7:15 PM
SAINTS
Sunday, Dec 29 @ 3:25 PM
Vikings
Sunday, Jan 5 @ 12:00 PM
BEARS
Sunday, Jan 12 @ 3:30 PM
Eagles
Recent Topics
8h / Green Bay Packers Talk / beast

20h / Green Bay Packers Talk / Martha Careful

25-Jan / Random Babble / Martha Careful

21-Jan / Green Bay Packers Talk / Mucky Tundra

21-Jan / Green Bay Packers Talk / Mucky Tundra

20-Jan / Green Bay Packers Talk / Martha Careful

20-Jan / Green Bay Packers Talk / bboystyle

20-Jan / Green Bay Packers Talk / Zero2Cool

20-Jan / Green Bay Packers Talk / beast

19-Jan / Random Babble / Martha Careful

18-Jan / Green Bay Packers Talk / Zero2Cool

17-Jan / Green Bay Packers Talk / bboystyle

17-Jan / Green Bay Packers Talk / Zero2Cool

17-Jan / Green Bay Packers Talk / Martha Careful

16-Jan / Green Bay Packers Talk / beast

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