Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP Error: Maximum function nesting level of '100' reached, aborting [duplicate]

Tags:

php

mysql

Fatal error: Maximum function nesting level of '100' reached, aborting! in ...\project\db.php on line 2

My db.php code

$db = mysql_connect ("localhost","db_user","password");
mysql_select_db("db_name",$db);

What's wrong?

like image 811
oboshto Avatar asked Jul 05 '13 12:07

oboshto


1 Answers

Increase the value of xdebug.max_nesting_level in your php.ini, INFO
There is a question here

like image 148
mirkobrankovic Avatar answered Oct 18 '22 09:10

mirkobrankovic