Click here to Skip to main content
15,890,438 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Good day sir.
i've been doing a project which is to connect in MSSQL using ubunto in PHP program..
And now i've encountered an error which i couldn't solve. Please help me!
this is my program and below of the program is my error

PHP
<?php 
	ini_set('display errors', 1);
	$server = 'sq2ct0tocw.database.windows.net:1433';
	$username = 'SQLogbox@sq2ct0tocw';	
	$password = 'LBPassword2013';
	$db= 'LogboxDB';
	$con = mssql_connect('sq2ct0tocw.database.windows.net:1433','SQLogbox@sq2ct0tocw','LBPassword2013') or die (mssql_get_last_message());
	if(!$con)
	{
		die('Could not Connect'.mssql_get_last_message());
	} 
	else
	{
		echo 'Connection Established!';
	}


error :
Unable to connect to server: sq2ct0tocw.database.windows.net:1433
Thanks for the help :D
Posted
Comments
Sergey Alexandrovich Kryukov 12-Nov-13 3:15am    
What is "Ununto"? Never heard of such thing.
—SA
Kornfeld Eliyahu Peter 12-Nov-13 4:15am    
He means Ubuntu - typo...
(but do not answer one that rude...)
John Mark Olesco 12-Nov-13 4:11am    
Are you blind dude!? read my question first before posting any comment. Your not helpful but just a some sort of scumbag.
Kornfeld Eliyahu Peter 12-Nov-13 4:15am    
You want answers? Play nice...
Sergey Alexandrovich Kryukov 12-Nov-13 10:14am    
Now we can see: this is not just a typo, exactly as I suspected. Probably you already knew that rudeness strongly correlates with illiteracy. This is just one more illustration. Of course, no answer, just some comments. An abuse report won't hurt, too.
—SA

1 solution

Why U Use MSSQL in UBUNTU, Try to use MySql Server in ubuntu!
 
Share this answer
 
Comments
John Mark Olesco 13-Nov-13 2:35am    
I need MSSQL inorder for me to connect in sql azure. that's the reason behind using the mssql.
can you help me?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900