the loaded page is top.php , where $Count; is set. regards
On 18 Mag, 12:22, dearste <[EMAIL PROTECTED]> wrote: > ok, > in top.html, below <inpu type..., i have added <?=echo $Count;?>, and > yes, php var is set in top.html. > How to pass it in main page with a jquery .load?? > > On 18 Mag, 08:21, ferdjuan <[EMAIL PROTECTED]> wrote: > > > Is your script which processes the $Count variable (I assume it's a > > page hit checker?) being included before the line: $ > > ("#top").load("top.htmll");? If the assignment for $Count is made at > > the wrong time, and then you .load an html file I don't think $Count > > will have any value. Immediately below the line <input > > type="hidden..." add <?=echo $Count;?> and see if it actually has a > > value, if nothing echoes rethink your timing of processes.