Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Ajax posting in the same page Re: Ajax posting in the same page

#96163
bungle
Member

I haven’t looked to see what else might be wrong but you are using a PHP variable in your script at the top outside of php

xmlhttp.open(“GET”,”$_SERVER[PHP_SELF]?person=”+person,true);

needs to be

xmlhttp.open(“GET”,”?person=”+person,true);