Is there a way to make Eclipse give code hints to variables created from objects? For example if I create a new variable:
$db = new mysqli('server', 'user', 'pwd', 'database');
then $db-> brings up code hints, but if I do:
$query = 'Select * From thisTable';
$result = $db->query($query);
but then if I use:
$result->
I do not get any code hints.. I'm pretty new to Eclipse and PHP. I have searched around but could not find anything related to this. I did notice while trying out the new version of Dreamweaver CS5.5 it does do code hinting for the above scenario.