Hirdetés
- Vegyes társaság jött a szombati hardverbuliba
- Százmilliárd dolláros AI-fegyverkezésbe kezdett az Amazon és a Google
- Így tüzelt el százbillió forintot az AI a héten
- Kétféle módon harcol a forró helyzetekkel szemben az ASUS új, M.2-es SSD háza
- Mérföldkő a szilárdtest akkuknál: fontos lépést tett a QuantumScape
- Lítium-ion/Li-ion akkumulátorok
- Milyen billentyűzetet vegyek?
- Miért tűntek el a buta tévék?
- Melyik tápegységet vegyem?
- Házi barkács, gányolás, tákolás, megdöbbentő gépek!
- Házimozi belépő szinten
- OLED TV topic
- NVIDIA GeForce RTX 5080 / 5090 (GB203 / 202)
- AMD Ryzen 9 / 7 / 5 / 3 5***(X) "Zen 3" (AM4)
- Van képe mindent kiírni a HAGiBiS SSD házának
-
PROHARDVER!
JavaScript != Java (A JavaScript nem összekeverendő a Javával, két különböző programozási nyelvről van szó!)
Új hozzászólás Aktív témák
-
Kaoru
senior tag
Uh sziasztok kéne egy kis help.
Javascripttel ''csináltam'' egy mező ellenőrzőt, h ne kelljen majd phpval és mysql-lel utána ellenőrizgetni. De valahogy így nem akar működni a gomb. Valaki rá tudna nézni?
<html>
<head>
<title>Registration form</title>
<script language=''javascript''>
function DoSubmit ()
if (document.form.fname1.value == '''')
{
alert (''You need to fill the field named: Family name 1'');
document.form.fname1.focus ();
return '''';
}
if (document.form.name1.value == '''') {
alert (''You need to fill the field named: First name 1'');
document.form.name1.focus ();
return '''';
}
if (document.form.fname2.value == '''') {
alert (''You need to fill the field named: Family name 2'');
document.form.fname2.focus ();
return '''';
}
if (document.form.name2.value == '''') {
alert (''You need to fill the field named: First name 2'');
document.form.fname2.focus ();
return '''';
}
if (document.form.email.value == '''') {
alert (''You need to fill the field named: E-mail'');
document.form.email.focus ();
return '''';
}
if (document.form.country.value == '''') {
alert (''You need to fill the field named: Country'');
document.form.country.focus ();
return '''';
}
if (document.form.name.value == '''') {
alert (''You need to fill the field named: Contact name'');
document.form.name.focus ();
return '''';
}
if (document.form.address.value == '''') {
alert (''You need to fill the field named: Address'');
document.form.address.focus ();
return '''';
}
document.form.submit ();
}
</script>
</head>
<body>
<form action=''livereg.php'' method=''post''>
<!-- this line opens the form, be sure to place the filename of the file that you will use to process the form in place of ''livereg.php'', post is the chosen method to forward the values to the script --!>
<table width=''90%'' border=''0''>
<!-- NEVEK --!>
<!-- táncos pár első fele --!>
<tr>
<td>
Participant 1's name:
</td>
</tr>
<tr>
<tr>
<td width=''300''>Family name</td>
<td width=''300'' > <input type=''text'' name=''fname1'' size=''32''> * </td>
</tr>
<tr>
<td width=''300''>First name</td>
<td width=''300'' > <input type=''text'' name=''name1'' size=''32''> * </td>
</tr>
<!-- táncos pár második fele --!>
<tr>
<td>
Participant 2's name:
</td>
</tr>
<tr>
<td width=''300''>Family name</td>
<!-- táncos pár második fele --!>
<td width=''300'' > <input type=''text'' name=''fname2'' size=''32''> * </td>
</tr>
<tr>
<td width=''300''>First name</td>
<td width=''300'' > <input type=''text'' name=''name2'' size=''32''> * </td>
</tr>
<!-- NEVEK VÉGE --!>
<!-- NEM VÁLASZTÓ --!>
<tr>
<td><input type=''radio'' name=''gender'' value=''male''> Male</td>
<br>
<td><input type=''radio'' name=''gender'' value=''female''> Female</td>
</tr>
<!-- NEM VÁLASZTÓ VÉGE --!>
<!-- EMAIL --!>
<tr>
<td>Your Email:</td>
<td><input type=''text'' name=''email'' size=''32''> *</td>
</tr>
<tr>
<!-- EMAIL VÉGE --!>
<!-- ORSZÁG --!>
<tr>
<td>Country:</td>
<td><input type=''text'' name=''country'' size=''32''> *</td>
</tr>
<tr>
<!-- ORSZÁG VÉGE --!>
<!-- KATEGÓRIA --!>
<tr>
<td>Discipline</td>
<td>
<select name=''Discipline''>
<option value=''WBC''>Women's Ballroom ''C'' Class
<option value=''WBB''>Women's Ballroom ''B'' Class
<option value=''WBA'' selected=''selected''>Women's Ballroom ''A'' Class
<option value=''WLC''>Women's Latin ''C'' Class
<option value=''WLB''>Women's Latin ''B'' Class
<option value=''WLA''>Women's Latin ''A'' Class
<option value=''MBC''>Men's Ballroom ''C'' Class
<option value=''MBB''>Men's Ballroom ''B'' Class
<option value=''MBA''>Men's Ballroom ''A'' Class
<option value=''MLC''>Men's Latin ''C'' Class
<option value=''MLB''>Men's Latin ''B'' Class
<option value=''MLA''>Men's Latin ''A'' Class
</select>
</td>
</tr>
<!-- KATEGÓRIA VÉGE --!>
<!-- SIGHTSEEING --!>
<tr>
<td>Would You like to participate on the sightseeing tour of Budapest (15 Euro/person):</td>
<td>
<select name=''Sightseeing''>
<option value=''yes1''>Yes, 1 person (15 Euro)
<option value=''yes2'' selected=''selected''>Yes, 2 person (30 Euro)
<option value=''no''>No
</td>
</tr>
<!-- SIGHTSEEING VÉGE --!>
<!-- SIGHTDAY --!>
<tr>
<td>If yes, which day do You prefer:</td>
<td>
<select name=''Sightday''>
<option value=''day1''>Friday 20 October
<option value=''day2'' selected=''selected''>Sunday 22 October
</td>
</tr>
<!-- SIGHTDAY VÉGE --!>
<!-- HOSTING --!>
<tr>
<td>Would You like to apply for hosted housing:</td>
<td>
<select name=''Sightseeing''>
<option value=''yes'' selected=''selected''>Yes
<option value=''no''>No
</td>
</tr>
<!-- HOSTING VÉGE --!>
<!-- CONTACTINFO --!>
<tr>
<td>Contact information:</td>
</tr>
<td>Your Full Name:</td>
<td><input type=''text'' name=''name'' size=''50''> *</td>
</tr>
<tr>
<td>Address:</td>
<td><input type=''text'' name=''address'' size=''50''> *</td>
</tr>
<tr>
<td>Phone:</td>
<td><input type=''text'' name=''phone'' size=''50''></td>
</tr>
<tr>
<td><input type=''hidden'' name=''mode'' value=''submit''></td>
<td><input type=''button'' onclick=''DoSubmit ()'' value=''Register''></td>
</tr>
<!-- CONTACTINFO VÉGE --!>
</table>
</form>
</body>
</html>
Élőben: [link]
Előre is köszönöm!
Új hozzászólás Aktív témák
- Autóápolás, karbantartás, fényezés
- GoodSpeed: Samsung DV90DG52A0ABLE hőszivattyús szárítógép
- Futás, futópályák
- One otthoni szolgáltatások (TV, internet, telefon)
- Kuponkunyeráló
- Lítium-ion/Li-ion akkumulátorok
- Milyen billentyűzetet vegyek?
- Audi, Cupra, Seat, Skoda, Volkswagen topik
- D1Rect: Nagy "hülyétkapokazapróktól" topik
- Egyéni arckép 2. lépés: ARCKÉPSZERKESZTŐ
- További aktív témák...
- -ÚJ- 2x8GB 3600MHz Apacer NOX hűtőbordás DDR4 kitek! GAR/SZÁMLA (a Te nevedre kiállítva)!
- Kingston HyperX Fury Beast 2x8GB 3200MHz DDR4 kit / Beszámítás OK!
- G.SKILL Ripjaws V 2x4GB 3000MHz DDR4 kit
- Dell Latitude 7480 használt laptop eladó
- ASUS ROG Falchion (HU) 65%-os mechanikus billentyűzet (LUBED + TAPED + DUMPED)
- Sosemhasznált! HP OmniBook 5 Flip i3-1315U 8GB 512GB 14" FHD+ áthajtós-érintős Gar.: 1 év
- ÁRGARANCIA!Épített KomPhone Ryzen 7 7800X3D 32/64GB RAM RTX 5070Ti 16GB GAMER PC termékbeszámítással
- Újszerű Dell XPS 13 9310 - 13.4" FHD+ i7-1185G7 - 16GB - 1TB - Win11 PRO
- GYÖNYÖRŰ iPhone 14 Pro Max 256GB Deep Purple-1 ÉV GARANCIA - Kártyafüggetlen, MS4398, 100% Akksi
- BESZÁMÍTÁS! LENOVO ThinkPad P15 Gen 2 munkaállomás - i7 11800H 32GB DDR4 512GB SSD Quadro T1200 W11
Állásajánlatok
Cég: Central PC számítógép és laptop szerviz - Pécs
Város: Pécs
Cég: Laptopműhely Bt.
Város: Budapest


