Jump to content

JavaScript Form validator will not work ..


spacepoet

Recommended Posts

Hi:

 

I am having an issue with 2 brackets in the name of the FILE INPUT filed used to upload a photo.

 

Basically, my JavaScript form validation will not work unless they are removed, and if they are then the photo will not upload.

 

Anyone know a trick around this?

 

This is the code:

<script language="JavaScript">

function validate_form()
{
    valid = true;
    
    if ( document.upload_form.photo_filename[].value == "" )
    {

        alert ( "Please add a photo." );
        valid = false;
    }
    
    return valid;
}

</script>



<?php
// initialization
$photo_upload_fields = "";
$counter = 1;

// default number of fields
$number_of_fields = 1; 

// If you want more fields, then the call to this page should be like, 
// preupload.php?number_of_fields=20

if( $_GET['number_of_fields'] )
$number_of_fields = (int)($_GET['number_of_fields']);

// Firstly Lets build the Category List

$result = mysql_query( "SELECT category_id,category_name FROM gallery_category" );
while( $row = mysql_fetch_array( $result ) )
{
$photo_category_list .=<<<__HTML_END
<option value="$row[0]">$row[1]</option>\n
__HTML_END;
}
mysql_free_result( $result );	

// Lets build the Photo Uploading fields
while( $counter <= $number_of_fields )
{
$photo_upload_fields .=<<<__HTML_END
<tr>
<td>
  Photo:
<td>     
    <input name='photo_filename[]' type='file' />
</td>
</tr>
<tr>
<td>
     Caption:
</td>
<td>
    <textarea name='photo_caption[]' cols='50' rows='1'></textarea>
</td>
</tr>
__HTML_END;
$counter++;
}

// Final Output
echo <<<__HTML_END
<form enctype="multipart/form-data" action="upload.php" method="post" name="upload_form" onsubmit="return validate_form();">
<table width='600' border='0' id='tablepadding' align='center'>
<tr>
<td width='100'>
	Select Category
</td>
<td width='500'>
	<select name='category'>
		$photo_category_list
	</select>
</td>
</tr>

<!-Insert the photo fields here -->
$photo_upload_fields

<tr>
<td>
        <input type='submit' name='submit' value='Add Photo' />
</td>
</tr>
</table>
</form>
__HTML_END;
?>

 

 

It's this area where I can't figure out how to revise it:

<tr>
<td>
  Photo:
<td>     
    <input name='photo_filename[]' type='file' />
</td>
</tr>

 

The [] after photo_filename are causing the issue.

 

???

 

Link to comment
Share on other sites

Square brackets within an input's name creates an array... are you wanting to validate multiple file inputs here? If so then using an ID is not the way to go, as they should be unique. Also if you set the ID the same for each, only the last element with the ID will be validated.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.