Jump to content

unable to display my tables


dave_55

Recommended Posts

hi im having a problem with my work, this is my code and it is not displaying my table information. im running this of wamp server if that makes any difference.  I have check if t at least connects and it does, it just doesnt display my table tho?????

 

Can anybody help???

 

My code:

 

<?php

$database = "localhost"; //login to the server

$username = "dave"; //username login

$password = "******"; //password login

 

//connection to the database

$dbhandle = mysql_connect($hostname, $username, $password)

or die("Unable to connect to MySQL");

echo "Connected to MySQL<br>";

 

//select a database to work with

$selected = mysql_select_db("lincolnrugby",$dbhandle)

  or die("Could not select lincoln rugby");

 

$result = mysql_query("SELECT * FROM fixtures"); //execute the SQL query and return records

 

 

while($row = mysql_fetch_array($result)){

echo "Date:".$row{'date'}."Home or Away Game:".$row{'homeawaygame'}."Home Team:".$row{'hometeam'}."Away Team:".$row{'awayteam'}."<br>"; //display the result

}

 

//close the connection

mysql_close($dbhandle);

 

?>

 

Output:

 

Connected to MySQL

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

Date:Home or Away Game:Home Team:Away Team:

 

 

Can anybody help me please ive tried so many things now?

Link to comment
https://forums.phpfreaks.com/topic/98689-unable-to-display-my-tables/
Share on other sites

Thats awesome got them working now thanks for your help.  One more question tho, how do i get them displayed more neatly and not like this.  Can i not have all the information displayed under the headings date, homeawaygame, etc?????

 

Connected to MySQL

Date: 2007-09-08

HomeAwayGame: Away

HomeTeam: Nottingham Moderns

AwayTeam: Lincoln

 

Date: 2007-09-15

HomeAwayGame: Away

HomeTeam: Glossop

AwayTeam: Lincoln

 

Date: 2007-09-22

HomeAwayGame: Home

HomeTeam: Lincoln

AwayTeam: IIkelston

 

Date: 2007-09-29

HomeAwayGame: Away

HomeTeam: Mansfield

AwayTeam: Lincoln

 

Date: 2007-10-06

HomeAwayGame: Home

HomeTeam: Lincoln

AwayTeam: Oakham

 

Date: 2007-10-20

HomeAwayGame: Away

HomeTeam: Spalding

AwayTeam: Lincoln

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.