Followings are some helpful codes in php: 1] Develop with error reporting enabled error_reporting ( E_ALL ) ; ini_set ( 'display_errors' , 1 ) ; 2] Prevents SQL injection $query_result = mysql_query ( "SELECT * FROM WHERE Ex_table ex_field = \" " . mysql_real_escape_string( $ ex_field ) . " \ " " ) ; 3] … Continue reading PHP Tips and Tricks
Month: August 2018
Vue js is progressive javascript framework used to create dynamic user interfaces.It is very easy to learn.You don’t need to install any third party libraries to use Vue js just need add Vue js library in your project. Followings are some of useful interview questions and answers for vue.js : 1.What is Vue.js? Vue.js (pronounced /vjuː/, like … Continue reading Vue JS Interview Questions