WHERE aber wie?

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • WHERE aber wie?

    Hi@all,

    habe hier eine DB mit IP Ranges plus provider ( anhang )!
    Ich weiss aber nicht wie ich das feld IP abfragen soll?


    Es hat mal 4 mal 5 und mal 6 zeichen....

    So in etwa:


    IP provider land
    217.232 tonlne DE
    217.3 aol UK
    217.34 freenet DE
    Angehängte Dateien
    [color=red]Parse error: parse error, unexpected T_STRING in signature.php on line 47[/color]

  • #2
    explode()

    Kommentar


    • #3

      sieht ja ganz logisch aus mit der func. aber so wirklich hab ich noch nicht raus wie ich es n diesem fall anwenden soll muss......
      [color=red]Parse error: parse error, unexpected T_STRING in signature.php on line 47[/color]

      Kommentar


      • #4
        definiere mal "abfragen" ... ich werd nicht ganz schlau daraus, was du
        erreichen willst.
        Kissolino.com

        Kommentar


        • #5
          ok hattest recht, ging doch.....

          PHP-Code:
          $ip_seg=explode(".",$cur_ip);
          $ip_part=$ip_seg[0].".".$ip_seg[1];
          $get_provider=mysql_query("SELECT provider, land FROM ".$db_tab14." WHERE ip=$ip_part");
          $provider mysql_fetch_array($get_provider); 
          funzt sogar..
          THX

          Was mir aufgefallen ist, das die db nicht vollständig ist, weisst du wo man etwas in ähnlicher form herbekommen kann?
          [color=red]Parse error: parse error, unexpected T_STRING in signature.php on line 47[/color]

          Kommentar


          • #6
            warum sagst du nicht gleich, dass du das in ne mysql-db eingespielt hast?

            *verschieb*

            Kommentar


            • #7
              ups...
              hab ich nicht ?
              [color=red]Parse error: parse error, unexpected T_STRING in signature.php on line 47[/color]

              Kommentar

              Lädt...
              X