Posted by Anonymous Wed 28th Feb 2007 15:58 - Syntax is PHP - 40 viewsRun this post in the PHP shell
Download | New Post | Modify | Hide line numbers
PHP parser reported no syntax errors in this post!
  1. PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. "http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  3.     "Content-Type" content="text/html; charset=UTF-8" />
  4.     SalesTrak CRM Components
  5.     "icon" href="/favicon.ico" type="image/x-icon" />
  6.     "shortcut icon" href="/favicon.ico" type="image/x-icon" />
  7.         "stylesheet" type="text/css" href="salestrak.css" />
  8.    
  9.    
  10.             var djConfig={
  11.                 isDebug: true,
  12.                 debugAtAllCosts:false,
  13.                 googleMapKey: "ABQIAAAAx4kyC7m2EBw2DnZY_NviwhRN5D1cnC1q4IlEuxGq1eAgTGPsphRskYFvx4D6HQg4TbW35CAi4WeXQg"
  14.             };
  15.    
  16.    
  17.    
  18.             dojo.require("dojo.io.*");
  19.             dojo.require("dojo.lfx.*");
  20.             dojo.require("dojo.lfx.rounded");
  21.             dojo.require("dojo.widget.Button");
  22.             dojo.require("dojo.widget.DebugConsole");
  23.             //dojo.require("dojo.widget.validate");
  24.             dojo.require("dojo.widget.GoogleMap");
  25.             dojo.hostenv.writeIncludes();
  26.        
  27.    
  28.  
  29.    
  30.         /* Styles */
  31.         form{width:380px;}
  32.         form label{width:150px;display:block;float:left; font:normal normal normal 13px arial, helvetica, sans-serif;}
  33.         form input[type=text]{width:200px;display:block;float:left;height:16px;}
  34.         form div{padding:5px;height:20px;}
  35.        
  36.         div#map{display:none;width:400px;height:300px;position:absolute;top:100px;left:200px;z-index:2;border:1px solid #ccc;padding:10px;background-color:#fff;}
  37.         div#mapTest{z-index:5;height:300px;width:400px;}
  38.    
  39.  
  40.  
  41.    
  42. "body">
  43.    
  44.    
    "addressForm">
  45.        
  46.        
    "post" action="" name="" id="addressForm">
  47.            
  48.            
    "addr1_bind">
  49.                
  50.                 "text" name="addr1" id="addr1" value=""
  51.                        onfocus="dojo.html.setStyle(dojo.byId('addr1_bind'),'background-color','#FFFFA8')"
  52.                        onblur="dojo.html.setStyle(dojo.byId('addr1_bind'),'background-color','transparent')"
  53.                 />
  54.            
  •            
  •            
    "addr2_bind">
  •                
  •                 "text" name="addr2" id="addr2" value=""
  •                        onfocus="dojo.html.setStyle(dojo.byId('addr2_bind'),'background-color','#FFFFA8')"
  •                        onblur="dojo.html.setStyle(dojo.byId('addr2_bind'),'background-color','transparent')"
  •                 />
  •            
  •            
  •            
    "city_bind">
  •                
  •                 "text" name="city" id="city" value=""
  •                        onfocus="dojo.html.setStyle(dojo.byId('city_bind'),'background-color','#FFFFA8')"
  •                        onblur="dojo.html.setStyle(dojo.byId('city_bind'),'background-color','transparent')"
  •                 />
  •            
  •            
  •            
    "state_bind">
  •                
  •                 "text" name="state" id="state" value=""
  •                        onfocus="dojo.html.setStyle(dojo.byId('state_bind'),'background-color','#FFFFA8')"
  •                        onblur="dojo.html.setStyle(dojo.byId('state_bind'),'background-color','transparent')"
  •                 />
  •            
  •            
  •            
    "postcode_bind">
  •                
  •                 "text" name="postcode" id="postcode" value=""
  •                        onfocus="dojo.html.setStyle(dojo.byId('postcode_bind'),'background-color','#FFFFA8')"
  •                        onblur="dojo.html.setStyle(dojo.byId('postcode_bind'),'background-color','transparent')"
  •                 />
  •            
  •            
  •            
    "country_bind">
  •                
  •                
  •                        onfocus="dojo.html.setStyle(dojo.byId('country_bind'),'background-color','#FFFFA8')"
  •                        onblur="dojo.html.setStyle(dojo.byId('country_bind'),'background-color','transparent')"
  •                 />
  •            
  •            
  •            
    "submit_bind">
  •                
  •                 "submit" value="submit" name="submit" />
  •            
  •            
  •             "#" onclick="displayMap();dojo.html.setStyle(dojo.byId('map'),'display','block');">show map
  •            
  •        
  •        
  •    
  •    
  •    
    "map">
  •        
    "mapTest">
  •        
  •         function displayMap() {
  •             var map = dojo.widget.createWidget("googlemap",'',dojo.byId('mapTest'));
  •             // assign the data to the map and draw
  •             map.data=eval('(lat'=>'53.57', 'lng'=>'-1.49', 'description'=>'A map point cool')); ?>)');
  •             map.render();
  •         }
  •        
  •    
  •    
  •  
  •  
  • $addr = '1 St James Square, Hoyland, Barnsley, UK';
  • //http://api.local.yahoo.com/MapsService/V1/geocode?appid=me&location=1%2BSt%2BJames%2BSquare%252C%2BHoyland%252C%2BBarnsley%252C%2BUK
  • include 'geocode.class.php';
  • $objGeo = new geocode;
  • $a = $objGeo->yahoo_geo($addr);
  • echo "
    "
    ; print_r($a); echo "";
  •  
  •  
  •  
  •  
  • ?>

  • PermaLink to this entry https://pastebin.co.uk/11169
    Posted by Anonymous Wed 28th Feb 2007 15:58 - Syntax is PHP - 40 viewsRun this post in the PHP shell
    Download | New Post | Modify | Hide line numbers

     

    Comments: 0