Forms not working in IE7

Discussion in 'Web Programming' started by fighter1431, Nov 27, 2010.

Forms not working in IE7
  1. Unread #1 - Nov 27, 2010 at 12:31 PM
  2. fighter1431
    Joined:
    Feb 21, 2007
    Posts:
    418
    Referrals:
    0
    Sythe Gold:
    0

    fighter1431 Forum Addict

    Forms not working in IE7

    Hello everyone.

    I am having problems witha form that does not work in IE 7.
    It is a form for a magazine where reviewers have to comments on an uploaded article.

    If someone knows what causes this problem can he / she please tell me?

    This is the form:

    Code:
    <p><b><font color='yellow'>".$error."</font></b></p>
    <form action='review.php' method='get' name='reviewsubmitform' id='reviewsubmitform'>
    	<p>
    		<b>Manuscript info</b>
    		<hr />
    		<table>
    			<tr>
    					<td width='200'>Manuscript</td>
    				<td>".$id." - ".$row3['ArticleTitle']."</td>
    			</tr>
    		</table>
    		<hr />
    		<table>
    			<tr>
    				<td width='200'>Date Uploaded</td>
    				<td>".$row3['Upload_Date']."</td>
    			</tr>
    		</table>
    		<hr />
    		<table>
    			<tr>
    				<td width='200'>Manuscript file</td>
    				<td><a href='upload/".$row3['Filename']."'>".$row3['Filename']."</a></td>
    			</tr>
    			<tr>
    				<td>Figures</td>
    				<td><a href='upload/".$row3['Figures']."'>".$row3['Figures']."</a></td>
    			</tr>
    			<tr>
    				<td>Letter of Rebuttal</td>
    				<td>".$letter."</td>
    			</tr>
    		</table>
    	</p>
    		
    	<p>
    		<b>Quality of research</b>
    		
    		<table >
    			<tr>
    				<td width='80'></td>
    				<td width='30'><b>Top</b><br />10%</td>
    				<td width='30'><b>Top</b><br />25%</td>
    				<td width='30'><b>Top</b><br />50%</td>
    				<td width='30'><b>Low</b><br />50%</td>
    				<td width='30'><b>Low</b><br />25%</td>
    				<td width='30'>N/A</td>
    			</tr>
    			<tr>
    				<td>Significance of research</td>";
    				if ($significance == 'top10%') {$content .= "<td><input type='radio' name='significance' value='top10%' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='significance' value='top10%' /></td>";}
    				if ($significance == 'top25%') {$content .= "<td><input type='radio' name='significance' value='top25%' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='significance' value='top25%' /></td>";}
    				if ($significance == 'top50%') {$content .= "<td><input type='radio' name='significance' value='top50%' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='significance' value='top50%' /></td>";}
    				if ($significance == 'low50%') {$content .= "<td><input type='radio' name='significance' value='low50%' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='significance' value='low50%' /></td>";}
    				if ($significance == 'low25%') {$content .= "<td><input type='radio' name='significance' value='low25%' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='significance' value='low25%' /></td>";}
    				if ($significance == 'N/A') {$content .= "<td><input type='radio' name='significance' value='N/A' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='significance' value='N/A' /></td>";}
    				$content .="
    			</tr>
    			<tr>
    				<td>Originality of research</td>";
    				if ($orginality == 'top10%') {$content .= "<td><input type='radio' name='orginality' value='top10%' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='orginality' value='top10%' /></td>";}
    				if ($orginality == 'top25%') {$content .= "<td><input type='radio' name='orginality' value='top25%' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='orginality' value='top25%' /></td>";}
    				if ($orginality == 'top50%') {$content .= "<td><input type='radio' name='orginality' value='top50%' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='orginality' value='top50%' /></td>";}
    				if ($orginality == 'low50%') {$content .= "<td><input type='radio' name='orginality' value='low50%' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='orginality' value='low50%' /></td>";}
    				if ($orginality == 'low25%') {$content .= "<td><input type='radio' name='orginality' value='low25%' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='orginality' value='low25%' /></td>";}
    				if ($orginality == 'N/A') {$content .= "<td><input type='radio' name='orginality' value='N/A' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='orginality' value='N/A' /></td>";}
    				$content .="
    			</tr>
    			<tr>
    				<td>Experimental design and quality of data</td>";
    				if ($design == 'top10%') {$content .= "<td><input type='radio' name='design' value='top10%' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='design' value='top10%' /></td>";}
    				if ($design == 'top25%') {$content .= "<td><input type='radio' name='design' value='top25%' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='design' value='top25%' /></td>";}
    				if ($design == 'top50%') {$content .= "<td><input type='radio' name='design' value='top50%' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='design' value='top50%' /></td>";}
    				if ($design == 'low50%') {$content .= "<td><input type='radio' name='design' value='low50%' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='design' value='low50%' /></td>";}
    				if ($design == 'low25%') {$content .= "<td><input type='radio' name='design' value='low25%' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='design' value='low25%' /></td>";}
    				if ($design == 'N/A') {$content .= "<td><input type='radio' name='design' value='N/A' checked='checked'/></td>";}
    				else {$content .= "<td><input type='radio' name='design' value='N/A' /></td>";}
    				$content .="
    			</tr>
    		</table>
    	</p>
    	
    	<p>
    		<b>Overall recommendation</b>
    		<hr />
    		<table>
    			<tr>
    				<td width='400'>Acceptance (publishable as it is)</td>";
    				if ($recommendation == 'Acceptance (publishable as it is)') {$content .= "<td><input type='radio' name='recommendation' value='Acceptance (publishable as it is)' checked='checked' /></td>";}
    				else {$content .= "<td><input type='radio' name='recommendation' value='Acceptance (publishable as it is)' /></td>";}
    				$content .= "
    			</tr>
    			<tr>
    				<td>Conditional acceptance (needs minor changes indicated in comments)</td>";
    				if ($recommendation == 'Conditional acceptance (needs minor chances indicated in comments)') {$content .= "<td><input type='radio' name='recommendation' value='Conditional acceptance (needs minor chances indicated in comments)' checked='checked' /></td>";}
    				else {$content .= "<td><input type='radio' name='recommendation' value='Conditional acceptance (needs minor chances indicated in comments)' /></td>";}
    				$content .= "
    			</tr>
    			<tr>
    				<td>Minor revision (needs minor/moderate revisions and further review)</td>";
    				if ($recommendation == 'Moderate revision (needs minor/moderate revisions and further review)') {$content .= "<td><input type='radio' name='recommendation' value='Moderate revision (needs minor/moderate revisions and further review)' checked='checked' /></td>";}
    				else {$content .= "<td><input type='radio' name='recommendation' value='Moderate revision (needs minor/moderate revisions and further review)' /></td>";}
    				$content .= "
    			</tr>
    			<tr>
    				<td>Major revision (needs substantial revisions and further review)</td>";
    				if ($recommendation == 'Major revision (needs substantial revisions and further review)') {$content .= "<td><input type='radio' name='recommendation' value='Major revision (needs substantial revisions and further review)' checked='checked' /></td>";}
    				else {$content .= "<td><input type='radio' name='recommendation' value='Major revision (needs substantial revisions and further review)' /></td>";}
    				$content .= "
    			</tr>
    			<tr>
    				<td>Rejection (unlikely to be acceptable even after major revisions)</td>";
    				if ($recommendation == 'Rejection (unlikely to be acceptable even after major revisions)') {$content .= "<td><input type='radio' name='recommendation' value='Rejection (unlikely to be acceptable even after major revisions)' checked='checked' /></td>";}
    				else {$content .= "<td><input type='radio' name='recommendation' value='Rejection (unlikely to be acceptable even after major revisions)' /></td>";}
    				$content .= "
    			</tr>
    			<tr>
    				<td>Rejection, inappropriate (not appropriate for this journal)</td>";
    				if ($recommendation == 'Rejection, inappropriate (not appropriate for this journal)') {$content .= "<td><input type='radio' name='recommendation' value='Rejection, inappropriate (not appropriate for this journal)' checked='checked' /></td>";}
    				else {$content .= "<td><input type='radio' name='recommendation' value='Rejection, inappropriate (not appropriate for this journal)' /></td>";}
    				$content .= "
    			</tr>
    		</table>
    	</p>
    	<p>
    		<b>Other Notes</b>
    		<hr />
    		<table>
    			<tr>
    				<td width='400'>Is there any question of violation of the journals<br />policy on research involving animals and human beings?</td>";
    				if ($violation == 'yes') {$content .= "<td width='30'>yes<input type='radio' name='violation' value='yes' checked='checked' /></td>";}
    				else {$content .= "<td width='30'>yes<input type='radio' name='violation' value='yes' /></td>";}
    				if ($violation == 'no') {$content .= "<td width='30'>no<input type='radio' name='violation' value='no' checked='checked' /></td>";}
    				else {$content .= "<td width='30'>no<input type='radio' name='violation' value='no' /></td>";}
    				$content .= "
    			</tr>
    			<tr>
    				<td>Is an editorial needed?</td>";
    				if ($editorial == 'yes') {$content .= "<td width='30'>yes<input type='radio' name='editorial' value='yes' checked='checked' /></td>";}
    				else {$content .= "<td width='30'>yes<input type='radio' name='editorial' value='yes' /></td>";}
    				if ($editorial == 'no') {$content .= "<td width='30'>no<input type='radio' name='editorial' value='no' checked='checked' /></td>";}
    				else {$content .= "<td width='30'>no<input type='radio' name='editorial' value='no' /></td>";}
    				$content .= "
    			</tr>
    			<tr>
    				<td>If yes, will you volunteer to write the editorial within a month?</td>";
    				if ($volunteer == 'yes') {$content .= "<td width='30'>yes<input type='radio' name='volunteer' value='yes' checked='checked' /></td>";}
    				else {$content .= "<td width='30'>yes<input type='radio' name='volunteer' value='yes' /></td>";}
    				if ($volunteer == 'no') {$content .= "<td width='30'>no<input type='radio' name='volunteer' value='no' checked='checked' /></td>";}
    				else {$content .= "<td width='30'>no<input type='radio' name='volunteer' value='no' /></td>";}
    				$content .= "
    			</tr>
    		</table>
    	</p>
    	
    		<hr />
    		<b>Comments to author(s)</b> (These are the comments that the authors will recieve.)<br />
    		<hr />
    		In the space below, please pase a Word-processing file of your review. Please elaborate on your summary<br />
    		evaluations above, and guide the author on where and how the manuscript can be strengthened in order to better<br />
    		showcase the important contributions of the paper. On behalf of the authors and the editors of Journal Rhinology<br />
    		thank you for your time and comments.<br />
    		<hr />
    		<p><textarea name='commentstoauthor' rows='10' cols='100'>".$commentstoauthor."</textarea></p>
    		<hr />
    		<b>Review comments for editor</b>
    		<hr />
    	<p>
    		<p>Comments from reviewer to Editor in Chief</p>
    		<textarea name='commentstoeditor' rows='10' cols='100'>".$commentstoeditor."</textarea>
    	</p>
    	<hr />
    	<b>Done</b>
    	<hr />
    	<p>
    		<table>
    			<tr>
    				<td width='200'>Commit review</td>
    				<td>
    				Please keep in mind that If you don't have time to finish this form now you can press the save button below and continue your review at a later time.<br />
    					<input type='hidden' name='id' value='".$id."' />
    					<input type='submit' name='save' value='Save' /><br />
    					<input type='submit' name='submit' value='Send to Editor in chief' onclick='javascript: alert(\"Please wait till you recieve a message that your review has been send\");'/>
    				</td>
    			</tr>
    		</table>
    	</p>
    </form>
    
     
  3. Unread #2 - Nov 27, 2010 at 2:17 PM
  4. uzn33dhelp
    Joined:
    May 19, 2008
    Posts:
    458
    Referrals:
    0
    Sythe Gold:
    0

    uzn33dhelp Forum Addict

    Forms not working in IE7

    Can you state exactly what is "not working" with it?

    Does it not display correctly, or does it not post properly?

    The code you have is quite long, so seraching for an error that is unknown to me would be like trying to finda needle in a hay stack
     
  5. Unread #3 - Nov 27, 2010 at 11:13 PM
  6. fighter1431
    Joined:
    Feb 21, 2007
    Posts:
    418
    Referrals:
    0
    Sythe Gold:
    0

    fighter1431 Forum Addict

    Forms not working in IE7

    Sorry for being unclear.

    It works in every browser but IE7.
    In IE7 people reported that either they press the button and nothing happens, or they push the button and the browser reports that they can't connect to the website.
     
  7. Unread #4 - Apr 24, 2011 at 7:42 AM
  8. fighter1431
    Joined:
    Feb 21, 2007
    Posts:
    418
    Referrals:
    0
    Sythe Gold:
    0

    fighter1431 Forum Addict

    Forms not working in IE7

    Bump, anyone got a solution?
     
  9. Unread #5 - Apr 24, 2011 at 11:16 PM
  10. uzn33dhelp
    Joined:
    May 19, 2008
    Posts:
    458
    Referrals:
    0
    Sythe Gold:
    0

    uzn33dhelp Forum Addict

    Forms not working in IE7

    You have no PHP tags around any of your PHP, that could be causing the error.
     
  11. Unread #6 - Apr 25, 2011 at 7:18 AM
  12. fighter1431
    Joined:
    Feb 21, 2007
    Posts:
    418
    Referrals:
    0
    Sythe Gold:
    0

    fighter1431 Forum Addict

    Forms not working in IE7

    This is all in an echo, but I can't share the rest of the code thx to security.
     
  13. Unread #7 - May 2, 2011 at 4:24 AM
  14. fighter1431
    Joined:
    Feb 21, 2007
    Posts:
    418
    Referrals:
    0
    Sythe Gold:
    0

    fighter1431 Forum Addict

    Forms not working in IE7

    Bump!
     
  15. Unread #8 - May 14, 2011 at 4:06 PM
  16. Posmag
    Joined:
    Jun 18, 2008
    Posts:
    337
    Referrals:
    0
    Sythe Gold:
    0

    Posmag Forum Addict

    Forms not working in IE7

    May you use pastebin? So your code will be easy to read.

    Thanks.
     
< buisness's | Starting a basic webpage - Looking for tips/help >

Users viewing this thread
1 guest


 
 
Adblock breaks this site