Jump to content

schaaij

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

schaaij's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. It took me a while testing with this .. but I got it working. Thanks!
  2. I've got the code as seen below, what I would like is to get numbers in front of the names you see. So I can easily see how many contenders have entered the tournament. I just can't seem to find how to do it. I'm a complete newbie. This is the output link http://www.dikkewille.nl/index.php?option=com_jumi&fileid=11&Itemid=70 And this is the code: $query="SELECT record, value FROM `jos_facileforms_subrecords` WHERE title='Voornaam'"; $query2="SELECT record, value FROM `jos_facileforms_subrecords` WHERE title='Achternaam'"; $query3="SELECT record, value FROM `jos_facileforms_subrecords` WHERE title='Woonplaats'"; echo '<b>Deelneemerslijst Snikke Open 2010</b>'; echo '<br>'; echo '<br>'; echo '<table border=1>'; echo '<tr>td>Voornaam</td><td>Achternaam</td><td>Woonplaats</td></tr>'; echo '<td width=100>'; if (!($temp = mysql_query($query,$connection))) showerror(); while ($rij = mysql_fetch_array($temp)) { echo $rij['value']; echo "<br>"; } echo '</td>'; echo '<td width=120>'; if (!($temp2 = mysql_query($query2,$connection))) showerror(); while ($rij2 = mysql_fetch_array($temp2)) { echo $rij2['value']; echo "<br>"; } echo '</td>'; echo '</td>'; echo '<td width=150>'; if (!($temp3 = mysql_query($query3,$connection))) showerror(); while ($rij3 = mysql_fetch_array($temp3)) { echo $rij3['value']; echo "<br>"; } echo '</td>'; echo '</table>'; ?> </body> </html>
×
×
  • 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.