seandisanti wrote:what is the output when you grab a single row with the line i asked you to execute?
Hi Seandisanti.
Im not sure i understand what i neda do.
I executed this:
- Code: Select all
<?php
mysql_connect("mysql07.webdomain.dk","mk","uri") or die(mysql_error());
echo "Connected to MySQL<br /><hr />";
mysql_select_db("mikethk_dk") or die(mysql_error());
echo "Connected to Database<br /><hr />";
$query = "SELECT * FROM fyn LIMIT 1";
$result = mysql_query($query) or die(mysql_error());
while($row = mysql_fetch_array($result)) {
echo $row['_arrangement'] . " - " . $row['_beskrivelse'];
echo "<br />";
}
?>
OBS: not right user and pass

The output from the above is:
SantaComming - ToTown
Which is correct.
What this what you needed? Im not sure i understand this "Schema" thing and how to retrieve it?