Code: Alles auswählen
<?php
function myTest($aElements)
{
$cRet = "<tr><td><select name=\"test_[]\" size=\"1\" style=\"width:250px\">\n";
for ($i=0; $i<count($aElements); $i++)
{
if ($iSelected == $i)
$cRet .="<option selected>".$aElements[$i]."</option>\n";
else
$cRet .="<option>".$aElements[$i]."</option>\n";
}
$cRet .="</select></td></tr>\n\n";
return $cRet;
}
?>
Code: Alles auswählen
<?php
for ($i=0; $i<$uebungen; $i++)
{
echo myTest($aTest,$i);
}
Code: Alles auswählen
<?php
define('IN_PHPBB', true);
$phpbb_root_path = "./";
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
include("inc/config.php");
//
// Set page ID for session management
//
$userdata = session_pagestart($user_ip, PAGE_LOGIN);
init_userprefs($userdata);
//
// End session management
//
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
?>
...
...
...
<?php
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>
<p>