
Ayuda con form de contactos
Publicado por Jorge (2 intervenciones) el 07/07/2015 18:52:05
Amigos necesito de su ayuda. Requiero con urgencia hacer los formularios php para una web. Quien me hizo la web me entrego malos los php y ahora no lo encuentro. Por favor si alguien me puede ayudar. Muchas gracias
Form 1
Form 2
Form 3
Form 1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 space">
<div id="message"></div>
<h2>Registration Form
</h2>
<div class="wpcf7" id="wpcf7-f2216-p2206-o1" lang="es-ES" dir="ltr">
<div class="screen-reader-response"></div>
<form action="mailregistrationsandfields.php" method="post">
<p>
<td><span class="texto5">Degree:</span><span class="required">*</span></td>
<td><select name="estado_civil" size="1" id="estado_civil">
<option selected="selected">PhD</option>
<option>Msc</option>
<option>Student</option>
<option>Professor</option>
</select></td></p>
<p>
<label for="comment_name">Full Name<span class="required">*</span></label>
<input id="comment_name" class="aqua_input" name="comment_name" type="text" value="">
</p>
<p>
<label for="subject">Institution<span class="required">*</span></label>
<input id="subject" class="aqua_input" name="subject" type="text" value="">
</p>
<p>
<label for="subject">Country<span class="required">*</span></label>
<input id="subject" class="aqua_input" name="subject" type="text" value="">
</p>
<p>
<label for="subject">Address<span class="required">*</span></label>
<input id="subject" class="aqua_input" name="subject" type="text" value="">
</p>
<p>
<label for="subject">Mail<span class="required">*</span></label>
<input id="subject" class="aqua_input" name="subject" type="text" value="">
</p>
<p>
<label for="subject">Phone<span class="required">*</span></label>
<input id="subject" class="aqua_input" name="subject" type="text" value="">
</p>
<p>
<label for="comment">Message<span class="required">*</span></label>
<textarea id="comment" rows="2" class="aqua_input" name="comment"></textarea>
</p>
<p class="form-submit">
<input name="submit" type="submit" id="submit" value="Submit" class="button_hilite sm_button">
</p>
</form>
</div>
</div>
</div> </div>
</div>
</div>
</div>
Form 2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 space">
<div id="message"></div>
<h2>Submission Form
</h2>
<div class="wpcf7" id="wpcf7-f2216-p2206-o1" lang="es-ES" dir="ltr">
<div class="screen-reader-response"></div>
<form action="submission.php" method="post">
<p>
<label for="comment_name">Full Name<span class="required">*</span></label>
<input id="comment_name" class="aqua_input" name="comment_name" type="text" value="">
</p>
<p>
<label for="email">Organization<span class="required">*</span></label>
<input id="email" class="aqua_input" name="email" type="text" value="">
</p>
<p>
<label for="subject">Mail<span class="required">*</span></label>
<input id="subject" class="aqua_input" name="subject" type="text" value="">
</p>
<p>
<label for="subject">Address<span class="required">*</span></label>
<input id="subject" class="aqua_input" name="subject" type="text" value="">
</p>
<p><tr>
<td> </td>
<td><span class="texto5">Degree<span class="required">*</span></span></td>
<td><select name="estado_civil" size="1" id="estado_civil">
<option selected="selected">Student</option>
<option>Researcher</option>
<option>Professor</option>
</select></td></tr></p>
<p>
<div class="form_registro_input_wrapper">
FOR STUDENT<br>
<br>
Are you request finnancial support?
:<br />
<span class="wpcf7-form-control-wrap trabajo"><span class="wpcf7-form-control wpcf7-radio" id="form_registracion_trabajo"><span class="wpcf7-list-item first"><input type="radio" name="trabajo" value="SI" /> <span class="wpcf7-list-item-label">YES</span></span><span class="wpcf7-list-item last"><input type="radio" name="trabajo" value="NO" /> <span class="wpcf7-list-item-label">NO</span></span></span></span>
</div></p>
<p class="form-submit">
<input name="submit" type="submit" id="submit" value="Submit" class="button_hilite sm_button">
</p>
</form>
</div>
</div>
Form 3
1
2
3
4
5
6
<form action="" method="post" enctype="multipart/form-data" name="form1">
<p align="center">Please use file name in the form “Firstname_Lastname.pdf” for your abstract.
<input name="archivo" type="file" id="archivo">
</p>
<p align="center"><input name="boton" type="submit" id="boton" value="Submit"></p>
</form></div>
Valora esta pregunta


0