dynamically appointed values..

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Charles256
DevNet Resident
Posts: 1375
Joined: Fri Sep 16, 2005 9:06 pm

dynamically appointed values..

Post 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?
User avatar
hawleyjr
BeerMod
Posts: 2170
Joined: Tue Jan 13, 2004 4:58 pm
Location: Jax FL & Spokane WA USA

Post by hawleyjr »

Can we see your PHP code and not your HTML...? :roll:
Charles256
DevNet Resident
Posts: 1375
Joined: Fri Sep 16, 2005 9:06 pm

Post by Charles256 »

Code: Select all

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