hello, i'm just getting started with php and hope to add some funcionality to my site by allowing users to specify the default targets of links. later i hope to get into cookies and make this easier, but untill then... any ideas why this pops up a new window the *first time someone makes a selection? any ideas on ways to streamline this?
manu thanks,
nick
<FORM TARGET="<?php echo $PHP_SELF; ?>" METHOD=GET>set the target window of links to:<select name="target">
<option value="self">this window
<option value="foo">a new window
<option value="blank">all new windows
</select>
<input type="submit" value="set">
</form>
a short list of links styled like this:
<P><A target="<?php echo($target); ?>" href="http://www.uac.pdx.edu">the site i'm using this on</A>