Programmer to Programmer- A website for web programming and mobile application programming tutorials Blog
Today i found a new problem, the date object working perfectly in desktop web browsers but not working in android browsers and iphone browsers. The problem is they issue NAN and Undefined errors. So...
Without editing php.ini it is possible to display almost all errors in php by adding following 3 lines of codes on the top of the php page: ini_set(‘display_errors’, 1); ini_set(‘display_startup_errors’, 1); error_reporting(E_ALL); Hope it...
sometimes we might encounter the situation that we need to see or edit the hidden files in mac os. For example we need to show .htaccess file in the htdocs folder and edit it....
The default port on MAMP for mysql is 8889, but the port that php expects to use for mysql is 3306. So you need to change it. Open MAMP, go to Preferences and Ports...
In mac if you have ever encountered a problem that MySQL suddenly stopped working then i have a solution to your problem. I have recently encountered this problem in my Mac OS Sierra. Apache...
Nowadays, Be like Bill and Don’t be like Bill are trending on the internet. It is obvious for all that they love to create their own customized Be Like Bill or Don’t Be like...
To get PHP errors to display without modifying php.ini add the following codes to the top of the php file: ini_set(‘display_errors’, 1); ini_set(‘display_startup_errors’, 1); error_reporting(E_ALL); However, it won’t show parse errors. To show parse...
Sometimes its a headache aligning the text elements inside div to the middle. The easiest solution is to add line-height value equal to the height of the div element. Problem: Suppose we have <style>...
I came across another weird problem that i had TabHost inside Navigation Drawer and it works fine when loaded but while i change the orientation of the Android Device it displays nothing(..there might be...
I came across weird problem while i tried to login in my admin login i.e. i could not login in admin panel after i transferred my hosting account. WordPress displays the error “ERROR: Unreadable...
Recent Comments