0

enter image description here

I installed netbeans, but when I wrote functions like image[prepare or fetch statement], it did not autocomplete.

demongolem
  • 9,474
  • 36
  • 90
  • 105

1 Answers1

0

netbeans has many type of Code Completion, to get suggested completion of a given function, you can use the shortcut ctrl+space.

please make sure that the necessary package of your function are already imported, and that you declare it in an appropriate code block.

note: the shortcut to import all the required package (given that the project has already access to them) is ctrl+shift+i

yaitloutou
  • 1,691
  • 19
  • 23
  • When i use shortcut ctrl+space the function like prepare or fetch in PDO not autocomplete – medhatmero mero Dec 19 '16 at 14:34
  • at first I was talking about java auto-completion, but I see that you are working with PHP, check this [SO question](http://stackoverflow.com/questions/3608270/netbeans-php-code-completion-for-standard-functions) and let me know if it helps – yaitloutou Dec 19 '16 at 14:56