Unexpected token w in JSON at position 18

Unexpected token w in JSON at position 18

Hi,

I've been at this for a day and a half, trying different permutations and code off the web.  No matter what is inserted, I keep getting an Unexpected token error.  This time, it's token w at position 18.

I've simplified the code considerably:


  1.                         var data = { "sssss" : "ttttt" };
  2.                         // data = jQuery.parseJSON(JSON.stringify(data));                         
  3.                         // alert( data ) ;
  4.                         $.ajax({
  5.                                     //ajax request sending edited row values to Update_Extensions.php
  6.                                     type : "post",
  7.                                     dataType : "json",
  8.                                     url : 'Update_Extensions.php',

  9.                                     data : data,
  10.                                     success: function(data) 
  11.                                     {
  12.                                         if( response.type == 'success' ) 
  13.                                         {
  14.                                             alert("Record Saved!");
  15.                                         } 
  16.                                         else 
  17.                                         {
  18.                                             alert('Error! Enter all values correctly.');
  19.                                             location.reload();
  20.                                         };

  21.                                     }
  22.                                 }) ;



  23.                                 
  24.                         $(document).ajaxError(
  25.                             function (event, jqXHR, ajaxSettings, thrownError) {
  26.                                 alert('[event:' + event + '], [jqXHR:' + jqXHR + '], [ajaxSettings:' + ajaxSettings + '], [thrownError:' + thrownError + '])');
  27.                             });
  28.                                         

Does anyone have suggestions about anything else I can try?  Is it related to the php file  Update_Extensions.php?

At the top of that file, it's also simplified:
  1. session_name('whatthe');
  2. session_start();

  3. $output = array();
  4. $output[ 'type' ] = "success";            
  5. $output = json_encode( $output );
  6. echo $output;

  7. echo 'we made it to the Update_Extensions code <br>' ;
  8. exit( 0 ) ;
  9.