Changeset 8983
- Timestamp:
- Mar 21, 2011, 1:54:50 PM (14 years ago)
- Location:
- src/olheatmap
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
src/olheatmap/index.html
r8982 r8983 7 7 <script src="OpenLayers/OpenLayers.js"></script> 8 8 <script src="js/OpenStreetMap.js"></script> 9 <script src="js/ test_1.php"></script>9 <script src="js/Heatmap.php"></script> 10 10 <script src="js/Concurrent.Thread-full-20090713.js"></script> 11 11 </head> -
src/olheatmap/js/Heatmap.php
r8982 r8983 28 28 function connectdb() 29 29 { 30 mysql_connect("loca lhost:3306", "root", "dsql")30 mysql_connect("location", "username", "password") 31 31 or die("Error connecting to mysql: " . mysql_error()); 32 mysql_select_db(' project_heatmap')32 mysql_select_db('database') 33 33 or die("Error connecting to database: " . mysql_error()); 34 34 } 35 35 connectdb(); 36 $table = 't est_3';36 $table = 'table'; 37 37 ?> 38 38
Note:
See TracChangeset
for help on using the changeset viewer.