VERY simple problem i know, but i need to have an array of text-box's.

<input type='text' id='val[]' value='1'>
<input type='text' id='val[]' value='2'>
<input type='text' id='val[]' value='3'>
<input type='text' id='val[]' value='4'>
<input type='text' id='val[]' value='5'>

I have simplified my code, however this is basically the source output i have. When i process the val[] array, it throws a null pointer exception. Could someone please help?

Cheers

Change your

id='val[]'

to

name='val[]'

Want to test to see if it works?

foreach($_POST['val'] as $vals){        
		echo "$vals<br />";
	}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.