Thanks for that. I could not see the trees for the woods.(Long Day).

I have added :

<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past


 $table=$_GET['table']; $expire=time()+60*60*24*30; setcookie
('table','',1); setcookie("table", $table,$expire);
 $start1=$_GET['start1']; $expire=time()+60*60*24*30; setcookie
('start1','',1);setcookie("start1", $start1,$expire);
  $end1=$_GET['end1']; $expire=time()+60*60*24*30; setcookie('end1','',
1);setcookie("end1", $end1,$expire);?>

But still no refresh in IE. What is the correct syntax for PHP please?



On Mar 24, 12:57 am, Rossko <[email protected]> wrote:
> > Also if I change the data and do apage refresh I get:
>
> > Firefox latest data showing
> > IE no data changes showing unless I clear cookies
>
> Yup, thats what IE does.  There are common tricks for forcing a
> refresh.
>
> > If I set to Geofence the marker shows image "MOVEDmarker.png" ie the
> > image assigned to var iconMovedmarker
>
> > If I set to Moved the marker does not show
>
> You have
>   var iconGEOmarker = new GIcon();
>   iconGEOmarker.image = 'Images/Googleicons/GEOmarker.png';
>    ....
>   var iconMovedmarker = new GIcon();
>   iconGEOmarker.image = 'Images/Googleicons/MOVEDmarker.png';
>
> Movedmarker is never set up properly, but GEOmarker is overwritten
>
> cheers, Ross K
>
>
>
> > In testphp1.php I use:
>
> > <?php  $table=$_GET['table']; $expire=time()+60*60*24*30; setcookie
> > ("table", $table,$expire);?>
> > <?php  $start1=$_GET['start1']; $expire=time()+60*60*24*30; setcookie
> > ("start1", $start1,$expire);?>
> > <?php  $end1=$_GET['end1']; $expire=time()+60*60*24*30; setcookie
> > ("end1", $end1,$expire);?>
>
> > In phpsqlajax_gexml.php & phpsqlajax_gexmllast.php I use :
>
> > $table = $_COOKIE["table"];
> > $start1 = $_COOKIE["start1"];
> > $end1 = $_COOKIE["end1"];
>
> > and use them in a query:
>
> > $query = "SELECT * FROM ".$table. " WHERE date BETWEEN (CAST('".
> > $start1."' as DATE)) AND (CAST('".$end1."' as DATE)) AND `Long1` <>
> > '0'";
>
> > Cheers
>
> > SteveW
>
> > On Mar 23, 11:23 pm, Ralph Ames <[email protected]> wrote:
>
> > > Please read the posting guidelines and provide a link to your 
> > > map.http://groups.google.com/group/Google-Maps-API/web/suggested-posting-...
> > > nes
>
> > > Ralph
>
> > >www.easypagez.com/maps/map_index.html
> > > -- Hide quoted text -
>
> > - Show quoted text -
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to