I have a small problem getting this (code underneath) to work. It's very simple, but i'm making myself blind trying to figure out what i'm missing.
Can anyone help me??
Why destroy other people, when you already have succes in destroying yourself...
Code:
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<table>
<tr>
<td>
<font>Mandag: </font>
</td>
<td>
<input type="text" name="hours[0]" size="2" maxlength="2" value="<?php if(isset($hours[0])) echo $hours[0]; ?>" />
:
<input type="text" name="minutes[0]" size="2" maxlength="2" value="<?php if(isset($minutes[0])) echo $minutes[0]; ?>" />
</td>
</tr>
<tr>
<td>
<input type="submit" name="submit" value="Ok" />
</td>
</tr>
</table>
</form>
Can anyone help me??
Why destroy other people, when you already have succes in destroying yourself...