Jump to content

MrOnline

Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

MrOnline's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. First thing you will need to do is make any header/banner/logo smaller than 640 as that is the lowest resolution people view webpages. So maybe 550 or 600. You can be creative and make it stretch to any size if you work with takes and a sliced up image. Or you can create a few versions of your page. One for the 600 width people and one for the 600+ people. This isnt a php related question though. :/
  2. Be sure to restart mysql and possibly your webserver after making changes to users.
  3. I am trying to grab some fields out of my database and shuffle them to play eachother. include ("db.php"); $read_teams="SELECT teamname FROM ptg_teams"; $read_teams_result=mysql_query($read_teams); $a = mysql_num_rows(mysql_query("SELECT * FROM ptg_teams")); $x = 0; while($x < $a) { $data=mysql_fetch_array($read_teams_result); $rand_keys = array_rand ($data, 2); $randteams[$x]=$data[$rand_keys[0]]."n"; $x++; $data=mysql_fetch_array($read_teams_result); $randteams[$x]=$data[$rand_keys[1]]."n"; $x++; } $i=0; while($i < $a) { $rand_keys = array_rand ($randteams, $a); print $randteams[$rand_keys[$i]]; $i++; } while() { $rand_keys++ echo "<br>"; } This is what I have but it sorts em in pairs wrong. It just double lists the names, such as: Team1 Team1 Team 2 Team 2 when I need it to mix em up so team1 and team2 match up together.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.