• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Ajax poller

Status
Für weitere Antworten geschlossen.

p1xm

Neues Mitglied
Hallo,

Ich versuche das Ajax poller zu instalieren, ist von hier: Ajax poller

Das resultat meine instalation ist hier: Ajax poller

Ich habe die instalation gemacht so wie beschrieben

dbConnect.php
PHP:
<?

$conn = mysql_connect("localhost","d00a0ff7","meinpass");
mysql_select_db("d00a0ff7",$conn);

?>
createDbTables.php
PHP:
<?

/*     This is the SQL that creates the default tables used in the poller script from www.dhtmlgoodies.com    */

//SQL that creates the tables needed in this demo

$conn = mysql_connect("localhost","d00a0ff7","meinpass");
mysql_select_db("d00a0ff7",$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')");
Danach die createDbTables.php in browser ausgefuhrt und anschliesend die ajax-poller.html augefuft

hier das ergebniss: Ajax poller

kann mir jemand helfen bitte

schone grusse
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben