hey friends where am i wrong in this quiz script , is this bcoz m using php ver 5 , so this script not working , the questions are not displayed while playing quiz , any one help pls
		
							
						
					where am i wrong in this quiz script ????
				
					Collapse
				
			
		
	X
- 
	
	
	
		
	
	
		
		
		
		
		
		
		
	
	
 more than likely a data collection method eg: a missing $_POST or $_GET ..... the reason it probably worked on php 4 and not 5 is because of globals not being registered...
 you more than likely can do a quick fix by registering globals on, but this is a security risk and your are far better off searching the script for the missing data collection method and assigning it to the appropriate variable eg:
 $something = $_GET['something'];
 

Comment