this is my javascript code :
function category(row){ dataparam = \"oper=delete&row=\"+row; $.ajax({ type: \"POST\", url: \"multiuplo
In your dataparam variable you have "oper=delete&row="+row; and in the PHP code you test for $_REQUEST['opers']), since oper <> opers, the failure is perfectly normal, just add or remove the s somewhere.
"oper=delete&row="+row;
$_REQUEST['opers'])
oper
opers
s