<?
//SQL that creates the tables needed in this demo
$conn = mysql_connect("localhost","username","şifre");
mysql_select_db("database",$conn);
mysql_query("drop table poller");
mysql_query("drop table poller_vote");
mysql_query("drop table poller_option");
mysql_query("create table poller(ID int auto_increment not null primary key,
pollerTitle varchar(255))") or die(mysql_error());
mysql_query("create table poller_vote(
ID int auto_increment not null primary key,
optionID int(11),
ipAddress varchar(255))") or die(mysql_error());
mysql_query("create table poller_option(
ID int auto_increment not null primary key,
pollerID int(11),
optionText varchar(255),
pollerOrder int,
defaultChecked char(1) default 0)") or die(mysql_error());
mysql_query("insert into poller(ID,pollerTitle)values('1','How would you rate this script?')");
mysql_query("insert into poller_option(pollerID,optionText,pollerOrder,defaultChecked)values('1','Excellent','1','1')");
mysql_query("insert into poller_option(pollerID,optionText,pollerOrder)values('1','Very good','2')");
mysql_query("insert into poller_option(pollerID,optionText,pollerOrder)values('1','Good','3')");
mysql_query("insert into poller_option(pollerID,optionText,pollerOrder)values('1','Fair','3')");
mysql_query("insert into poller_option(pollerID,optionText,pollerOrder)values('1','Poor','4')");Create Table dosyasının içeriği şu şekilde. Bunu nasıl Phpmyadmin den yüklenebilecek şekilde sql dosyasına dönüştürebilirim.Dönüştürüverecek kişi var mı acaba ?