Page 1 of 1

dynamically appointed values..

Posted: Sat Mar 11, 2006 3:58 pm
by Charles256

Code: Select all

<table border="0" align="left">
  <tr><td align="left" valign="middle">
	<form action="bracket_script.php" id="bracket" name="form" method="POST" onsubmit="return checkSubmit();">
	<label id="region1"><font color="#000000">Region 1</font></label>
	<table border="0" cellpadding="0" cellspacing="10" bgcolor="#333333">
  		<tr>
			<td>
				<input type="button" value="(1)Kentucky" id="1-1H" onClick="go(this.id,'1-9H',this.value);" name='reg1val1'/>
				<br>
			  <input type="button" value="(16)Maryland" id="1-1A" onclick="go(this.id,'1-9H',this.value);" name='reg1val1'/></td>
    		<td align="center" valign="middle">
    			<input type="button" value="" id="1-9H" onClick="go(this.id,'1-13H',this.value);" name='reg1val2'/>			</td>
    		<td colspan="2" rowspan="2" align="center" valign="middle">
    			<input type="button" value="" id="1-13H" onClick="go(this.id,'1-15H',this.value);" name='reg1val3'/></td>
    		<td colspan="13" rowspan="4">
    			<input type="button" value="" id="1-15H" onClick="go(this.id,'1-FF',this.value);" name='reg1val4'/>			</td>
			<td rowspan="8">
				<input type="button" value="" id="1-FF" name='reg1val5' />			</td>
  		</tr>
		<tr>
as you kind of get the picture from that the values are supposedly dynamically appointed during execution of the page,however, that is not the case. I'm not getting the values on the next page, why is that? How do I need to approach this?

Posted: Sat Mar 11, 2006 5:15 pm
by hawleyjr
Can we see your PHP code and not your HTML...? :roll:

Posted: Sat Mar 11, 2006 6:26 pm
by Charles256

Code: Select all

<?php
var_dump($_POST);
exit();
?>