I'm using an install of Dreamweaver on my Macbook to code. When I type code on Dreamweaver the hint code still works but it is not perfect. For example, when I type $ it shows the tooltip to hint the code but when I continue to type $_S it does not show code that starts with $_S. (I want it to show tooltip start with $_SESSION.)
I almost feel that this is too obvious to be the answer, but... 'C' and 'S' are different letters. If you wanted it to suggest
$_SESSION
, you should begin typing$_S
, not$_C
.