Problem mit mysqli_fetch_assoc

  • Hey,


    ich bekomme hier folgende Fehler:

    Code
    Warning:  mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, boolean given in C:\xampp\htdocs\cr_ucp\includes\sites\StatsPage.php on line 10
    Warning:  mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, boolean given in C:\xampp\htdocs\cr_ucp\includes\sites\StatsPage.php on line 12


    PHP
    $result = mysqli_query($sqlcon, "SELECT * FROM `crp_account_main` WHERE id = '".$_GET['id']."';");
    	$data = mysqli_fetch_assoc($result);
    	$result = mysqli_query($sqlcon, "SELECT * FROM cRP_account_inventar WHERE Name = '".$data['Name']."';");
    	$inv = mysqli_fetch_assoc($result); /////// 10 ///////
    	$result = mysqli_query($sqlcon, "SELECT * FROM cRP_account_licenses WHERE Name = '".$data['Name']."';");
    	$lic = mysqli_fetch_assoc($result); /////// 12 ///////



    Wieso funktioniert das nicht? Die Datenbanken sind 100%ig richtig (Lokal getestet und es ging).
    Die Datenbanken sind auch alle da, die 1. Lädt ja normal. Warum die anderen 2 nicht?


  • Immernoch Errors:

    Code
    Warning:  mysqli_fetch_object() expects parameter 1 to be mysqli_result, boolean given in C:\xampp\htdocs\cr_ucp\includes\sites\StatsPage.php on line 10
    Warning:  mysqli_fetch_object() expects parameter 1 to be mysqli_result, boolean given in C:\xampp\htdocs\cr_ucp\includes\sites\StatsPage.php on line 12
  • Wieso lässt du dir die SQL Kommandos nicht mal per echo ausgeben bzw print_r für $data ?

    Zitat

    expects parameter 1 to be mysqli_result, boolean given in


    Sagt ja schon,dass deine SQL Abfrage kein Ergebnis liefert womit mysqli_fetch_object arbeiten kann ( $result ).


    //Edit:
    `crp_account_main`
    vs
    cRP_account_inventar
    vs
    cRP_account_licenses


    Groß und Kleinschreibung auch beachten.


    //Edit nochmal:
    Okay :-0