Thank You so very much for your responses, Mr. Akmanchi and Mr. Lacroix.<br>i really appreciate it.<br>i will try to implement both ways for my application.<br><br>Thank You again<br>-donny-<br><br><br><b><i>Julien-Samuel Lacroix &lt;jlacroix@mapgears.com&gt;</i></b> wrote:<blockquote class="replbq" style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;"> Hi,<br><br>You can also use the OGR virtual data sources. You can connect directly <br>to a text file, a MySQL file or a ODBC connection.<br><br>How to set it up:<br>http://www.gdal.org/ogr/drv_vrt.html<br><br>How to integrate it in MapServer:<br>http://mapserver.gis.umn.edu/docs/reference/vector_data/VirtualSpatialData<br><br>Julien<br><br>Anand Akmanchi wrote:<br>&gt; Hi Donny,<br>&gt; <br>&gt; You can certainly put your points data in a single table in mysql<br>&gt; <br>&gt; Step 1: you have to add a column of int auto_increment type and name it GID<br>&gt; Step 2: Add a column of type
 geometry<br>&gt; Step 3: lets say that you have two columns containing latitude and <br>&gt; longitude in degree decimals. you have to populate the geometry column <br>&gt; by concatenating the lat and long values and generate a point using the <br>&gt; pointfromtext function in mysql.<br>&gt; <br>&gt; heres how you do it:<br>&gt; ALTER TABLE mypointstable ADD GID int(11) PRIMARY KEY AUTO_INCREMENT NOT <br>&gt; NULL;<br>&gt; ALTER TABLE mypointstable ADD GEOMETRY GEOMETRY NOT NULL;<br>&gt; UPDATE mypointstable SET GEOMETRY = <br>&gt; PointFromText(CONCAT('POINT(',mypointstable .longitude,' ',mypointstable <br>&gt; .latitude,')4326'));         <br>&gt; /*========4326 is the EPSG code for WGS84 datum*/<br>&gt; /*========Add a spatial index to geometry field */<br>&gt; ALTER TABLE mypointstable ADD SPATIAL INDEX ( 'GEOMETRY' ) ;<br>&gt; <br>&gt; Step 4: Use the mypointstable and define it accordingly in map file to <br>&gt; view it in ms4w.<br>&gt; also take a look at the url
 below<br>&gt; http://mapserver.gis.umn.edu/cgi-bin/wiki.pl?MySQL<br>&gt; <br>&gt; Hope this helps<br>&gt; -- <br>&gt; Dr. Anand Akmanchi<br>&gt; Lecturer in Geoinformatics<br>&gt; Department of Geography<br>&gt; University of Pune<br>&gt; ========================================<br>&gt; "Man's mind, once stretched by a new idea, never regains its original <br>&gt; dimensions." - Oliver Wendell Holmes<br>&gt; ========================================<br>&gt; <br>&gt;  <br>&gt; <br>&gt; On Tue, Jun 3, 2008 at 12:58 AM, donny wicaks <donnywicaks@yahoo.com><br>&gt; <mailto:donnywicaks@yahoo.com>&gt; wrote:<br>&gt; <br>&gt;     hello, my name is donny wicaksono, from indonesia<br>&gt; <br>&gt;     i'm developing a web-gis, i use windows as operating system, i use<br>&gt;     ms4w 2.2.6 with apache 2.2.4, php 5.2.4 and chameleon 2.4.<br>&gt;     for database, i use mysql 2.6.0<br>&gt; <br>&gt;     i have difficulties, and i really hope that i can get any help from<br>&gt;     any
 of you in this mailing list.<br>&gt; <br>&gt;     this is what i have already done:<br>&gt;     1. when you extract chameleon to your ms4w, so you have the samples<br>&gt;     of applications of chameleon.<br>&gt;     including the data (shapefiles, images), chameleon.map file, *.html<br>&gt;     for templates *.phtml, and chameleon.php.<br>&gt; <br>&gt;     2. i have data : a shapefile of a region (for the base map), and<br>&gt;     tabular data of points with coordinates in degree-minutes-seconds<br>&gt;     and other relevant data.<br>&gt; <br>&gt;     3. first, i convert the coordinates of the points into<br>&gt;     decimal-degree/longitude-lattitude manually by using ms-excel.<br>&gt; <br>&gt;     4. then by using arcview, i convert the points that are already in<br>&gt;     decimal-degree/longitude-latitude, into shapefile (shp)<br>&gt; <br>&gt;     5. then i modify the already existed chameleon.map. i eliminate all<br>&gt;     unnecessary layers and i add my own
 layers : my_base_map.shp, and<br>&gt;     several points.shp<br>&gt;     then i save chameleon.map as another name.<br>&gt; <br>&gt;     6. then i modify the already existed, for example:<br>&gt;     sample_enhanced.html and sanmple_enhanced.phtml and save them as<br>&gt;     other name.<br>&gt; <br>&gt;     7. for php file i use the already existed chameleon.php<br>&gt;     and i also have made the httpd_*.conf for it<br>&gt; <br>&gt;     8. and the web-gis is working fine! all the layers can be displayed<br>&gt;     on and off, all the navigation tools are working fine: zoom in, out,<br>&gt;     recenter, pan and so is the query/identify button.<br>&gt; <br>&gt; <br>&gt; <br>&gt;     my difficulties are:<br>&gt;     1. you can read my description above that i convert points data with<br>&gt;     coordinates into a shapefile and then put it in *.map file.<br>&gt;     then i realize that if i want to add some more points, then i will<br>&gt;     keep repeating the same
 procedures.<br>&gt;     i mean, i will have to make a new shapefile for every points that<br>&gt;     are added and then add the new shapefile (points.shp) to the *.map<br>&gt;     and the points are not supposed to become one layer, but a group of<br>&gt;     points become one layer, another group of layer become one layer,<br>&gt;     and so on. so i have five layers of points.<br>&gt; <br>&gt;     2. then it is related to the query process. when i convert the<br>&gt;     points in, let's say "points.shp", the database of the shapefile<br>&gt;     will be stored in "points.dbf".<br>&gt;     when i hit the query button / identify feature button in chameleon,<br>&gt;     the query result will display every data in "points.dbf".<br>&gt;     the data in "points.dbf" are only coordinates data and points_id<br>&gt;     while i have already develop the data in mysql in appropriate<br>&gt;     database management systems<br>&gt; <br>&gt; <br>&gt; <br>&gt;     my questions
 are:<br>&gt;     1. is there any way to make layers, that can be displayed on the<br>&gt;     web-gis (the map), from the points by using their coordinates data<br>&gt;     in decimal-degrees/longitude-latitude  that are stored in mysql?<br>&gt;     so i don't have to convert it first into shapefile (*.shp)<br>&gt; <br>&gt;     if that can be done, what kind of modification i should do?<br>&gt;     if you know the coding for that, please write it also.<br>&gt; <br>&gt;     what kind of code should i write in *.map file, *.php file, *.html<br>&gt;     file and *.phtml file in order to make the application works?<br>&gt; <br>&gt;     2. what code should i write to link the map with mysql database?<br>&gt;     where should i write that code? in *.map file, *.php file, *.html<br>&gt;     file and *.phtml file or in other file? maybe in querywidget.php? if<br>&gt;     so, what is the code?<br>&gt; <br>&gt;     if this can be done, i'm sure that the query will become
 more<br>&gt;     dynamic. you will help me a lot!!<br>&gt; <br>&gt;     i think it's all my question. i'm sorry if my post is too long, it's<br>&gt;     just because i want to explain competely about what i've done and<br>&gt;     what are my obstacles.<br>&gt; <br>&gt;     i will appreciate any help and response from any of you<br>&gt;     i thank you before..<br>&gt; <br>&gt;     regards,<br>&gt;     donny<br>&gt; <br>&gt; <br>&gt;     _______________________________________________<br>&gt;     Chameleon mailing list<br>&gt;     Chameleon@lists.maptools.org <mailto:Chameleon@lists.maptools.org><br>&gt;     http://lists.maptools.org/mailman/listinfo/chameleon<br>&gt; <br>&gt; <br>&gt; <br>&gt; <br>&gt; -- <br>&gt; Dr. Anand Akmanchi<br>&gt; Lecturer in Geoinformatics<br>&gt; Department of Geography<br>&gt; University of Pune<br>&gt; ========================================<br>&gt; "Man's mind, once stretched by a new idea, never regains its original <br>&gt; dimensions."
 - Oliver Wendell Holmes<br>&gt; ========================================<br>&gt; <br>&gt; <br>&gt; ------------------------------------------------------------------------<br>&gt; <br>&gt; _______________________________________________<br>&gt; Chameleon mailing list<br>&gt; Chameleon@lists.maptools.org<br>&gt; http://lists.maptools.org/mailman/listinfo/chameleon<br><br>-- <br>Julien-Samuel Lacroix<br>Mapgears<br>http://www.mapgears.com/<br></mailto:Chameleon@lists.maptools.org></mailto:donnywicaks@yahoo.com></donnywicaks@yahoo.com></blockquote><br><p>&#32;