hulp met echo
Code (php)
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
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css">
<!--
body, p, td
{color: black; font-family: varana; font-size:10 pt}
h1
{color: black; font-family: arial; font-size: 12 pt}
-->
</style>
<title>Sans Titre</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<meta name="generator" content="HAPedit 3.1">
</head>
<body bgcolor="#FFFFFF">
<table border="0" cellpadding="10"width="100%">
<TR>
<td bgcolor="#FOF8FF"align="center"valign="top"width="150"></td>
<td bgcolor="FFFFFF"align="left"valign="top"width="83%">
<h1> Workout Calculator (passing a variable) </h1>
<p> Enter blabla</p>
<form method="post"action="wc_handler_ckbox.php">
<table>
<tr>
<td><input type="radio"name="exercise"value="0"> Biking/cycling</td>
</tr>
<tr>
<td><input type="radio"name="exercise"value="1"> Running</td>
</tr>
<tr>
<td><input type="radio"name="exercise"value="2"> Soccer/Foorball</td>
</tr>
<tr>
<td><input type="radio"name="exercise"value="3"> Stairclimber</td>
</tr>
<tr>
<td><input type="radio"name="exercise"value="4"> Weightlifting</td>
</tr><tr>
<td> </td>
</tr><tr>
<td><input type="submit"name="submit"value="Burm, Baby, Burn !"></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</body>
</html>
<?php
EOPAGE
echo $page_str;
?>
<html>
<head>
<style type="text/css">
<!--
body, p, td
{color: black; font-family: varana; font-size:10 pt}
h1
{color: black; font-family: arial; font-size: 12 pt}
-->
</style>
<title>Sans Titre</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<meta name="generator" content="HAPedit 3.1">
</head>
<body bgcolor="#FFFFFF">
<table border="0" cellpadding="10"width="100%">
<TR>
<td bgcolor="#FOF8FF"align="center"valign="top"width="150"></td>
<td bgcolor="FFFFFF"align="left"valign="top"width="83%">
<h1> Workout Calculator (passing a variable) </h1>
<p> Enter blabla</p>
<form method="post"action="wc_handler_ckbox.php">
<table>
<tr>
<td><input type="radio"name="exercise"value="0"> Biking/cycling</td>
</tr>
<tr>
<td><input type="radio"name="exercise"value="1"> Running</td>
</tr>
<tr>
<td><input type="radio"name="exercise"value="2"> Soccer/Foorball</td>
</tr>
<tr>
<td><input type="radio"name="exercise"value="3"> Stairclimber</td>
</tr>
<tr>
<td><input type="radio"name="exercise"value="4"> Weightlifting</td>
</tr><tr>
<td> </td>
</tr><tr>
<td><input type="submit"name="submit"value="Burm, Baby, Burn !"></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</body>
</html>
<?php
EOPAGE
echo $page_str;
?>
dit is een simpele sport calculator
maar ik weet niet waar de echo geplaatst moet worden
dit bestand moet die oproepen
Code (php)
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
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Sans Titre</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<meta name="generator" content="HAPedit 3.1">
</head>
<body bgcolor="#FFFFFF">
<?php
//dit is de array waar we de namen van de oefeningen bewaren
$name_array = array(
0 => 'Bikking/Cycling',
1 => 'Running',
2 => 'Soccer/Footbal',
3 => 'Stairclimber',
4 => 'Weightlifting',
);
// Dit is een array waarin we de gegevens over de duur bewaren
$duration_array = array(
0 => '5 hours and 40 minutes',
1 => '4 hours and 30 minutes',
2 => '4 hours and 30 minutes',
3 => '5 hours',
4 => '7 hours and 30 minutes',
);
// Haal nu de gekozen oefening uit de verzending
if (is_array($_POST) &&count ($_post) > 1) {
$exercise_value = $_POST['exercise'];
$exercise_name = $name_array [$exercise_value];
$hours = $duration_array [$exercise_value];
//Gewoonlijk test u een array op een teller van 0, maar hier
//is er 1 automatisch POST-element --$_post['submit'].
//construeer een zin
//--------------
if (ifSet($hours) ) {
$massage = 'it would take'.$hours.'of '.$exercise_name.'to burn one pound of fat.';
} else {//Hmmm, er is niets gekozen of er gebeurde wat eigenaardigs
$message = 'umm, did you pick an exercise?';
}
//Maak nu de pagina op
//-----------
$page_str=<<<EOPAGE
?>
</body>
</html>
<html>
<head>
<title>Sans Titre</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<meta name="generator" content="HAPedit 3.1">
</head>
<body bgcolor="#FFFFFF">
<?php
//dit is de array waar we de namen van de oefeningen bewaren
$name_array = array(
0 => 'Bikking/Cycling',
1 => 'Running',
2 => 'Soccer/Footbal',
3 => 'Stairclimber',
4 => 'Weightlifting',
);
// Dit is een array waarin we de gegevens over de duur bewaren
$duration_array = array(
0 => '5 hours and 40 minutes',
1 => '4 hours and 30 minutes',
2 => '4 hours and 30 minutes',
3 => '5 hours',
4 => '7 hours and 30 minutes',
);
// Haal nu de gekozen oefening uit de verzending
if (is_array($_POST) &&count ($_post) > 1) {
$exercise_value = $_POST['exercise'];
$exercise_name = $name_array [$exercise_value];
$hours = $duration_array [$exercise_value];
//Gewoonlijk test u een array op een teller van 0, maar hier
//is er 1 automatisch POST-element --$_post['submit'].
//construeer een zin
//--------------
if (ifSet($hours) ) {
$massage = 'it would take'.$hours.'of '.$exercise_name.'to burn one pound of fat.';
} else {//Hmmm, er is niets gekozen of er gebeurde wat eigenaardigs
$message = 'umm, did you pick an exercise?';
}
//Maak nu de pagina op
//-----------
$page_str=<<<EOPAGE
?>
</body>
</html>
Graag in het vervolg bij code, [code] [/code] tags gebruiken. [/modedit]
Gewijzigd op 27/10/2010 11:24:08 door Bas IJzelendoorn
Kan je je code tussen [.code] en [./code] tags (zonden punten) plaatsen?
Quote:
maar ik weet niet waar de echo geplaatst moet worden
dit bestand moet die oproepen
dit bestand moet die oproepen
waarschijnlijk ben je meer iets van fopen nodig
maar alvast bedankt voor de reacties
Als je die ene pagina in die andere gaat zetten dan klopt er toch geen hout meer van je html code.
maar goed ik wil in dat formulier een .echo aanroepen naar dat php pagina
Eh? Bedoel je dat je die PHP pagina wilt includen?
ik dacht dat dat met echo geregelt kon worden ?
Echter als je include moet je er wel rekening mee houden dat je niet op allebei de pagina alle html tags gaat zetten. Deze zet je alleen op de pagina waarop geinclude word.
Doe verder ook wat aan je inline styles en tabellen.
Gewijzigd op 27/10/2010 18:02:25 door Milo S