I am trying to run a config.php file to connect to mysql database but i'm getting a error Parse error: syntax error, unexpected T_STRING on the last line amy ideas how to over come this my last line is mysql_select_db ($winahome_biz $db)
unexpected T_STRING
|
Newbie Member
|
|
| 1Oct2009,02:53 | #1 |
I am trying to run a config.php file to connect to mysql database but i'm getting a error Parse error: syntax error, unexpected T_STRING on the last line amy ideas how to over come this my last line is mysql_select_db ($winahome_biz $db)
|
|
Ambitious contributor
|
![]() |
| 12Oct2009,15:03 | #2 |
|
This happens due to syntax error.
I think you have missed a comma between the arguments and a semi colon at the end. mysql_select_db($winahome_biz, $db); |

