Hello,<br><br>I ve got a big problem with php/mapscript.I ve tried a simple &quot;hello world&quot; example (from Beginning MapServer Open Source GIS Development) and I didn&#39;t get any error message, but the browser couldn&#39;t generate the rendered pic. I don&#39;t know what the 
problem could be, but all codes what I ve made had the same problem.  I attached 
the bad codes. Thx for ur help and I&#39;m looking forward to your answer.<br><br><u>The php/mapscript file:</u><br><br>&lt;?php<br>dl(&#39;php_mapscript.dll&#39;);<br><br>$image_name = sprintf(&quot;phpms-hello%0.6d&quot;,rand(0,999999)).&quot;.png&quot;;<br>
<br>$map = ms_newMapObj(&quot;c:/ms4w/Apache/htdocs/hello_world/hello.map&quot;);<br><br>$image=$map-&gt;draw();<br><br>$image-&gt;saveImage(&quot;c:/ms4w/tmp/ms_tmp/&quot;.$image_name);<br><br>?&gt;<br><br>&lt;html&gt;<br>
&lt;head&gt;&lt;title&gt;PHP MapScript Hello World&lt;/title&gt;&lt;/head&gt;<br>&lt;body&gt;<br>&lt;form action=&quot;hello.php&quot; method=&quot;POST&quot;&gt;<br>&nbsp;&nbsp;&nbsp; &lt;input type=&quot;image&quot; name=&quot;img&quot;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; src=&quot;c:/ms4w/tmp/ms_tmp/&lt;?php echo $image_name; ?&gt;&quot;&gt;<br>&lt;/form&gt;<br>&lt;/body&gt;<br>&lt;/html&gt;<br><br><u>The map file:</u><br><br># &quot;Hello World&quot; mapfile<br>NAME &quot;Hello World&quot;<br>
SIZE 400 300<br>IMAGECOLOR 249 245 186<br>IMAGETYPE png<br>EXTENT -1.0 -1.0 1.0 1.0<br>WEB<br>&nbsp;&nbsp;&nbsp;&nbsp; IMAGEPATH &quot;c:/ms4w/tmp/ms_tmp/tmp/&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp; IMAGEURL &quot;/tmp/&quot;<br>END<br>LAYER&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp; STATUS default<br>
&nbsp;&nbsp;&nbsp;&nbsp; TYPE point<br>&nbsp;&nbsp;&nbsp;&nbsp; FEATURE<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; POINTS&nbsp; 0.00 0.00 END<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TEXT &quot;Hello World&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp; END # end feature<br>&nbsp;&nbsp;&nbsp;&nbsp; CLASS<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; STYLE<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; COLOR 255 0 0<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LABEL<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TYPE bitmap<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp;&nbsp; END<br>END<br>END<br><br>