Should i use the wordpress Options table or to create database table..?

Generally speaking, it’s better to use the WordPress options table unless you have an enormous amount of data.

If you also use the WordPress Options API you can easily store your options grouped into 1 or several serialized arrays. WordPress handles the serialization of the data and by default options are set to autoload and cached so you save on any additional queries.

You also have the benefit of using built in functions like get_option(), update_option(), etc…