I simplified my code all the way and yet it still doesn't work.
What should happen is that whatever you type in the "inplaceeditor" should be returned however it does not. I'm open to all suggestion.
here is my .html
<p id="test">Blah Blah Blah</p>
<script type="text/javascript">
<!--
new Ajax.InPlaceEditor('test', 'ajax.php');
-->
</script>
here is my .php
<?php
$value = $_POST['value'];
if($_POST['value'] != ''){
echo $value;
} else {
echo '$_POST[\'value\'] was not received.';
}
?>
I tested this and all I get is "$_POST['value'] was not received."
Obviously something is not right. If you could help that would be great.
