PHP kendi web sitesini oluşturduk. Ben de üye giriş fonksiyonu hav. Giriş fonksiyonu i the database of web hosting company(my hosting is provided by GoDaddy.com) üye bilgi bir tablo oluşturmak zorunda ve sonra MySQL veritabanı erişimi.
>> how can I create the table in my hosting server??
benim geçerli kod -
<?php
$host="localhost"; // Host name ??what will be my host??
$username=""; // Mysql username
$password=""; // Mysql password
$db_name="test"; // Database name
$tbl_name="members"; // Table name
// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");`