Search results

  1. R

    Can i configure a bluetooth "hands-free" mobile phone thing, on my computer?

    Yes. I can't give you step by step instructions, but I can say this: my colleague who works helpdesk used his bluetooth with his MSI Wind mini-notebook + Skype instead of a telephone for several months. Just make sure that your computer has the bluetooth feature.
  2. R

    how to add php data into mysql database?

    The beginners way is this: =================== $con = mysql_connect("localhost","username","password"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_db", $con); mysql_query("INSERT INTO Persons (namefield, emailfield) VALUES ($name, $email)")...
Back
Top