Problem with variables not posting
Posted: Fri Feb 02, 2007 6:57 pm
I have taken out of the page the core code that is being used to test on a seperate page
Every single value passes except for message id. I changed the name of the mes_id field to something I knew for a fact was not being used to see if it was being over written. If I post it back on this test page it passes the value, but when passed to index.php it never passes, no matter what it is named. Does anyone have any idea what could cause this?
Code: Select all
<form action='message_test.php' method='post'>
<input type='hidden' name='mode' value='messages'>
<input type='hidden' name='act' value='mes_list'>
<input type='hidden' name='refer' value='inbox'>
<input type='hidden' name='pro' value=''>
<input type="checkbox" name="mes_id[]" value="17595" /></td><td> </td><td><a href='index.php?mode=people_card&p_id=4'>pooh</a></td><td><a href='index.php?mode=messages&act=view_mes&mes_id=17595'>test</a>
<input type='submit' value='Delete' onClick='this.form.pro.value="del"'>
<input type='submit' value='Save' onClick='this.form.pro.value="sav"'>
    
<input type='button' value='Compose Message' onClick='window.location="index.php?mode=messages&act=compose"'> 
</form>