Nieuw lid |
|
$file = file('matches.csv');
foreach($file as $row => $field){
$file[$row] = explode(';', $field);
}
//Arrays
$date = $file[$row][0];
$teamA = $file[$row][1];
$teamB = $file[$row][2];
$teamA_res = $file[$row][3];
$teamB_res = $file[$row][4];
$homeA = $file[$row][5];
$homeB = $file[$row][5];
$tourn = $file[$row][6];
// verbinding met database
$connect = mysql_connect ("localhost","root","**") or die("mysql_error()");
mysql_select_db("fwr") or die("mysql_error()");
$row1 = mysql_fetch_array(mysql_query("select rating, team from team where team = '{$file[$row][1]}'", $connect));
$row2 = mysql_fetch_array(mysql_query("select rating, team from team where team = '{$file[$row][2]}'", $connect));
$K1 = mysql_fetch_array(mysql_query("select tourn_points, tournament from tourn where tournament = '{$file[$row][6]}'", $connect));
$Ro1 = $row1['rating'];
$Ro2 = $row2['rating'];
$K = $K1['tourn_points'];
echo $Ro1;
echo $Ro2;
echo $K;
$file = file('matches.csv'); foreach($file as $row => $field){ $file[$row] = explode(';', $field); } //Arrays $date = $file[$row][0]; $teamA = $file[$row][1]; $teamB = $file[$row][2]; $teamA_res = $file[$row][3]; $teamB_res = $file[$row][4]; $homeA = $file[$row][5]; $homeB = $file[$row][5]; $tourn = $file[$row][6]; // verbinding met database $Ro1 = $row1['rating']; $Ro2 = $row2['rating']; $K = $K1['tourn_points'];
Het lukt mij niet om een waarde tevoorschijn te toveren bij $K, terwijl het bij $Ro1 en $Ro2 wel lukt. De sql is nagenoeg hetzelfde en toch werkt het niet (uiteraard behalve andere tabellen).
Kan er iemand mij helpen of een tip geven wat er fout is?
Grtz
Christofhe
Sliphead schreef: Code tags gebruiken aub, heb je wachtwoord ook maar uit je code gehaaldÂ
|