I have installed MySQL and Php running on Apache web server on Solaris platform.Everything(PHP Scripts running fine on the server,Mysql is also running fine with its mysql> prompt)But when i try to do any DML operation (Insert/Update/Delete/Select)on the mysql database using PHP,It displays no errors everything works fine the execution reaches till the end of the code file ....But nothing happens to the database.If you try to Insert no insertion Happens or no Updation/Deletion/Selection happens.I dont know why?
Do i need to configure something?
Please Help
Thanx in Advance.
...This is my Code...
<?php
$conn=mysql_connect("mysqlServer","","");
if($conn==false){
echo mysql_errno(). " : " . mysql_error()."<br>";
exit;
}
$query="INSERT INTO info VALUES('Rajdeep','23','Shivaji Road')"
mysql_select_db("lamp");
mysql_query($query);
print ",,,,,,DONE,,,,,,,,";
?>