How to print array values in php using find i value – Indexed array

How to print array values indexing in php using Indexed array Indexed array is array with a numeric index. Index will Start with ‘0’ and it can be assigned automatically example < ?php $design = array(‘photoshop’,’flash’,’dreamviewer’,’html5′); echo $design[0]; //output is photoshop echo $design[1]; //output is flash ?> If you know the total number of array…

Details

Php Introduction

PHP Introduction Before learning php, you should have some knowledge in below topics: HTML CSS JavaScript Define php? PHP is an acronym for “Hypertext Preprocessor” PHP is a widely-used, open source scripting language PHP scripts are executed on the server PHP costs nothing, it is free to download and use Php File PHP files can…

Details
MySQL shutdown unexpectedly or MySQL server not working properly

MySQL shutdown unexpectedly or MySQL server not working properly

Error: MySQL shutdown unexpectedly. ERROR 12:19:12 PM [mysql] Attempting to start MySQL app… 12:19:12 PM [mysql] Status change detected: running 12:19:13 PM [mysql] Status change detected: stopped 12:19:13 PM [mysql] Error: MySQL shutdown unexpectedly. 12:19:13 PM [mysql] This may be due to a blocked port, missing dependencies, 12:19:13 PM [mysql] improper privileges, a crash, or…

Details

How to Solve MySQL extension is deprecated?

How To Slove the Mysql extension is Deprecated ? and What is Deprecated Error? After PHP5 version updated mysql_connect() is updated with Mysqi_Connect(). if you used old version of MYSQL_CONNECT() for database it shows Deprecated Error For Example CODE FOR CONNECT in old version <?php $link = mysql_connect(‘localhost’, ‘user’, ‘password’); mysql_select_db(‘databasename’, $link); ?> CODE FOR CONNECT…

Details