Question : Multiple repeat regions on 1 page with 1 recordset

I have this issue where I would like to populate various formfields (drop down menus) with values from  a lookup recordset... To get these vaues from the recordset a repeat region is used... I try to repeat 1 record and then on the other formattributes a second repeat region which should start from the record the first repeat region stopped So fra I have only been successfull in resetting the recordset to its starting point... Any suggestions? It feels like I am close but... ???

The reason I cant put it all in 1 repeat region is because there will be nested reeat regions for binded values inside the the dropdownmenus

wkr
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
<select name="Auteur1" id="Auteur1">
                          <?php do { ?>
                          <option value="<?php echo $row_LuA['A_Id']; ?>" selected="selected"><?php echo $row_LuA["A_AuteurA"] . "" . ", " . " " . $row_LuA["A_AuteurV"] . " " . $row_LuA["A_AuteurM"]?></option>
                          <?php } while ($row_LuA = mysql_fetch_assoc($LuA)); 
						  $rows = mysql_num_rows($LuA);
if($rows > 0) {
      mysql_data_seek($LuA, 0);
	  $row_LuA = mysql_fetch_assoc($LuA);
  }
						  ?></select>

<select name="AuteurId1" id="AuteurId1">
                    <?php do { ?>
<option value="<?php echo $row_LuA['A_Id']; ?>" selected="selected"><?php echo $row_LuA['A_Id']; ?></option>
<?php } while ($row_LuA = mysql_fetch_assoc($LuA));
$rows = mysql_num_rows($LuA);
  if($rows > 0) {
      mysql_data_seek($LuA, 1);
	  $row_LuA = mysql_fetch_assoc($LuA);
  }?>
                  </select>


 <select name="Auteur2" id="Auteur2">
                          <?php do { ?>
                          <option value="<?php echo $row_LuA['A_Id']; ?>" selected="selected"><?php echo $row_LuA["A_AuteurA"] . "" . ", " . " " . $row_LuA["A_AuteurV"] . " " . $row_LuA["A_AuteurM"]?></option>
                          <?php } while ($row_LuA = mysql_fetch_assoc($LuA)); 
						  $rows = mysql_num_rows($LuA);
if($rows > 0) {
      mysql_data_seek($LuA, 1);
	  $row_LuA = mysql_fetch_assoc($LuA);
  }
						  ?></select>

<select name="AuteurId2" id="AuteurId2">
                    <?php do { ?>
<option value="<?php echo $row_LuA['A_Id']; ?>" selected="selected"><?php echo $row_LuA['A_Id']; ?></option>
<?php } while ($row_LuA = mysql_fetch_assoc($LuA));
$rows = mysql_num_rows($LuA);
  if($rows > 1) {
      mysql_data_seek($LuA, 2);
	  $row_LuA = mysql_fetch_assoc($LuA);
  }?>
                  </select>

Answer : Multiple repeat regions on 1 page with 1 recordset

No,  go to the command prompt using the cmd.

then you need to get into the binaries directory so...
at the c:\> (this is called c prompt)

type cd C:\WINDOWS\pchealth\helpctr\binaries
press enter
then type in msconfig
press enter

Does msconfig start?
Random Solutions  
 
programming4us programming4us