Most Random fact

  • Christian Chat is a moderated online Christian community allowing Christians around the world to fellowship with each other in real time chat via webcam, voice, and text, with the Christian Chat app. You can also start or participate in a Bible-based discussion here in the Christian Chat Forums, where members can also share with each other their own videos, pictures, or favorite Christian music.

    If you are a Christian and need encouragement and fellowship, we're here for you! If you are not a Christian but interested in knowing more about Jesus our Lord, you're also welcome! Want to know what the Bible says, and how you can apply it to your life? Join us!

    To make new Christian friends now around the world, click here to join Christian Chat.
hehhehe

the other guy is copypasting

I´ll have to download pictures and enter the img tag thingy to all the sites :p
 
did that

Now we realized we are probably supposed to use the database and PHP for finding the info

sooo, if we somehow figure out how we will do that with the ther half of the artist info things
 
If you had chosen a school that works with ASP.net instead of PHP, I could have helped you :p
 
while( $row = mysql_fetch_array( $resultat ) )
{
echo "<tr>";
echo "<td>";
echo $row['start_tid'];
echo "</td>";

echo "<td>";
echo $row['tittel'];
echo "</td>";

echo "<td>";
echo $row['lokasjon'];
echo "</td>";

echo "<td>";
echo $row['pris_min'];
echo "</td>";

echo "<td>";
echo $row['pris_max'];
echo "</td>";

echo "</tr>";
}

?>
 
yes! :D

$query = "select beskrivelse from Artist where artistid=1";

echo "$query";

$resultat = @mysql_query( mysql_real_escape_string($query) );
if( !$resultat )
die( "Spørring feilet" );

/* real ascape gjør at resultatet ikke returneres... uten denne kommer svaret, men det må jo være med */

?>

<table id="resultat" class="res_tabell" cellspacing="40">
<tr>
<th>
Start
</th>
</tr>
<?php

while( $row = mysql_fetch_array( $resultat ) )
{
echo "<tr>";
echo "<td>";
echo $row['beskrivelse'];
echo "</td>";

echo "</tr>";
}

?>
</table>

<?php
mysql_close( $db_ref );
?>