I’m writing this php code where each php page (containing form and functions) load via ajax load() (upon option selection). Now i’m using ajax on “example.php” to load a php page “insertjobs.php” while passing a POST variable (“person Name”. This “insertjobs.php” should take that variable “person Name” and using “OOP” on second code (included) and (actions->sample($postedvar)) using that passed name variable inserts related “job title” to that specific name. Now when i don’t pass variable and assign name to that POST variable on “insertjob.php” page it works like a charm! But when i do i echo “$postedvar” before form submission and it works and looks fine but when i pass that $postedvar” to oop action page it returns NULL.