Hi
I am working with ajax.
`<form action="javascript:ajaxpage('files/search2.php', 'columnTwo')" method="POST">
Email :<input type="text" name="email" value=""/>
<button>Submit
</form>`
The problem is search2.php does not work properly.
It echo's the statements "The Email ID is :" but is not able to echo the value i.e $email
search2.php
`<?php
$email = $_POST['email'];
echo "The Email ID is :";
echo $email;
?>
<html>
<body>
<h1>Hello World</h1>
</body>
</html>`