Possible Duplicate:
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in
showing the error:
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\wamp\www\task2\ajax\editfrom.php on line 6
the code is,
<?php
$sql = ('select * from task_table where id='.$_POST['id']);
$row = mysql_fetch_array(mysql_query($sql));
?>