Title: Form Submit Problem
Last modified: August 20, 2016

---

# Form Submit Problem

 *  [bluelemonade](https://wordpress.org/support/users/bluelemonade/)
 * (@bluelemonade)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/form-submit-problem/)
 * hello,
 * i incuded my first plugin in the options pannel. when i aktivate the page via
   wp.admin everything is fine:
 * /wp-admin/options-general.php?page=myFirstpLugin
 * when I submit my options I get followings reseltung url, which thorows an error.
 * wp-admin/myFirstpLugin.php
 * where is my fault?

Viewing 1 replies (of 1 total)

 *  Thread Starter [bluelemonade](https://wordpress.org/support/users/bluelemonade/)
 * (@bluelemonade)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/form-submit-problem/#post-3421196)
 * ok, now i got the my page back! but the parameters are gone??? I din’t see it!
 *     ```
       <form name ="pull" action="" method="post">
   
       	<strong><label for="rawFolder"><?php _e('Select Project to edit:'); ?> </label></strong>
       	<select name="rawFolder" id="rawFolder">
       <?php
   
       	$counter = 0;
   
       	foreach ($rawFolders as $folder_key ) {
       		$folder_name = $rawFolders[$counter];
       		if ( $folder_key == $rawFolder )
       			$selected = " selected='selected'";
       		else
       			$selected = '';
       			$folder_name = esc_attr($folder_name);
       			$folder_key = esc_attr($folder_key);
       			echo "\n\t<option value=\"$folder_name\" $selected>$folder_name</option>";
   
       		$counter++;
       	}
   
       ?>
       		</select>
               <input type="hidden" name="action" value="pull"/>
       		<?php  submit_button( __( 'Select' ), 'button', 'Submit', false ); ?>
   
       	</form>
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Form Submit Problem’ is closed to new replies.

 * 1 reply
 * 1 participant
 * Last reply from: [bluelemonade](https://wordpress.org/support/users/bluelemonade/)
 * Last activity: [13 years, 3 months ago](https://wordpress.org/support/topic/form-submit-problem/#post-3421196)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
