Changeset 8989


Ignore:
Timestamp:
Mar 25, 2011, 3:51:21 PM (14 years ago)
Author:
dennisw
Message:

csv_to_db.php - str_replace updated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/db/csv_to_db.php

    r8986 r8989  
    22
    33// edit with personal settings
    4 $location = ' ';
    5 $username = ' ';
    6 $password = ' ';
    7 $database = ' ';
     4$location = 'localhost:3306';
     5$username = 'root';
     6$password = 'dsql';
     7$database = 'project_heatmap';
    88
    99$filelist = array();
     
    4646                        $lat=str_replace("N ", "", $data[0]);
    4747                        $lon=str_replace("E ", "", $data[1]);
     48                        $ssid=str_replace("'", "", $data[2]);
    4849                        $enc = substr($data[8], -2, 1);
    4950                        echo "\"".$lat.", ".$lon."\", \"".$data[2]."\", \"".$data[4]."\", \"".$enc."\"<br />\n";
    50                         $query=mysql_query("INSERT INTO ".$table." (latitude, longitude, ssid, mac, encryption) VALUES ('$lat','$lon','$data[2]','$data[4]','$enc')");
     51                        $query=mysql_query("INSERT INTO ".$table." (latitude, longitude, ssid, mac, encryption) VALUES ('$lat','$lon','$ssid','$data[4]','$enc')");
    5152                        if (!$query) {
    5253                                die('Invalid query: ' . mysql_error());
Note: See TracChangeset for help on using the changeset viewer.