Question : php html

var html = "<b>" + name + "</b> <br/>"  + address+"<br /><img src='"+picname+"' />";

i want to print ( NopeType, Nopeople  )  both of them begin new line be fore picname how can i do it



function createMarker(point, name, address, NopeType, Nopeople, picname) {
      var marker = new GMarker(point, customIcons[NopeType]);
      var html = "<b>" + name + "</b> <br/>"  + address+"<br /><img src='"+picname+"' />";
      GEvent.addListener(marker, 'click', function() {
        marker.openInfoWindowHtml(html);
      });
      return marker;

Answer : php html

Give this a try, see if it gives you some ideas:

@echo off
set DestinationDirectory=X:\
for /F "tokens=*" %%A in ('dir /b /s "c:\*_daily"') do (
  robocopy "%%A" %DestinationDirectory%" /S
)

~bp
Random Solutions  
 
programming4us programming4us