max. aantal tekens
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
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
<?php
include("connect.php");
include("functions.php");
$query = "SELECT * FROM `topics` WHERE weergeven = '1' ORDER BY datum DESC";
$resultaat = mysql_query($query) or die(mysql_error());
$aantal = mysql_num_rows($resultaat);
if($aantal >= 1)
{
while($rij = mysql_fetch_array($resultaat))
{
$datum= $rij['datum'];
$id= $rij['id'];
$titel= $rij['titel'];
$naam= $rij['naam'];
$bericht= $rij['bericht'];
$foto= $rij['foto'];
echo '
<div class="nieuws_hr"> <div class="nieuws_titel">
<a href="../page/artikel.php?artikel='.$id.'">'.$titel.'</a>
</div>
<div class="nieuws_left_image">
<a href="url"><img src="'.$foto.'" width=200; height=150; /></a>
</div>
<div class="nieuws_intro"><div class="nieuws_datum"><span>'.$datum.'</span></div>
'.$bericht.'
<span class="nieuws_meer">
<a href="../page/artikel.php?artikel='.$id.'">Meer</a></span>
<div class="nieuws_geplaats"> Geplaatst door: '.$naam.'</div>
</div></div>
';
}
}
?>
include("connect.php");
include("functions.php");
$query = "SELECT * FROM `topics` WHERE weergeven = '1' ORDER BY datum DESC";
$resultaat = mysql_query($query) or die(mysql_error());
$aantal = mysql_num_rows($resultaat);
if($aantal >= 1)
{
while($rij = mysql_fetch_array($resultaat))
{
$datum= $rij['datum'];
$id= $rij['id'];
$titel= $rij['titel'];
$naam= $rij['naam'];
$bericht= $rij['bericht'];
$foto= $rij['foto'];
echo '
<div class="nieuws_hr"> <div class="nieuws_titel">
<a href="../page/artikel.php?artikel='.$id.'">'.$titel.'</a>
</div>
<div class="nieuws_left_image">
<a href="url"><img src="'.$foto.'" width=200; height=150; /></a>
</div>
<div class="nieuws_intro"><div class="nieuws_datum"><span>'.$datum.'</span></div>
'.$bericht.'
<span class="nieuws_meer">
<a href="../page/artikel.php?artikel='.$id.'">Meer</a></span>
<div class="nieuws_geplaats"> Geplaatst door: '.$naam.'</div>
</div></div>
';
}
}
?>
substr()
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
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
<?php
include("connect.php");
include("functions.php");
$query = "SELECT * FROM `topics` WHERE weergeven = '1' ORDER BY datum DESC LIMIT 0,5";
$resultaat = mysql_query($query) or die(mysql_error());
$aantal = mysql_num_rows($resultaat);
if(substr($bericht) > 100) {
echo 'Een bericht mag maximaal 100 tekens bevatten.';
}
if($aantal >= 1)
{
while($rij = mysql_fetch_array($resultaat))
{
$datum= $rij['datum'];
$id= $rij['id'];
$titel= $rij['titel'];
$naam= $rij['naam'];
$bericht= $rij['bericht'];
$foto= $rij['foto'];
echo '
<div class="nieuws_hr"> <div class="nieuws_titel">
<a href="http://pretparkgids.altervista.org/index.php?p=artikel&id='.$id.'">'.$titel.'</a>
</div>
<div class="nieuws_left_image">
<a href="url"><img src="'.$foto.'" width=200; height=150; /></a>
</div>
<div class="nieuws_intro"><div class="nieuws_datum"><span>'.$datum.'</span></div>
'.$bericht.'
<span class="nieuws_meer">
<a href="http://pretparkgids.altervista.org/index.php?p=artikel&id='.$id.'">Meer</a></span>
<div class="nieuws_geplaats"> Geplaatst door: '.$naam.'</div>
</div></div>
';
}
}
?>
include("connect.php");
include("functions.php");
$query = "SELECT * FROM `topics` WHERE weergeven = '1' ORDER BY datum DESC LIMIT 0,5";
$resultaat = mysql_query($query) or die(mysql_error());
$aantal = mysql_num_rows($resultaat);
if(substr($bericht) > 100) {
echo 'Een bericht mag maximaal 100 tekens bevatten.';
}
if($aantal >= 1)
{
while($rij = mysql_fetch_array($resultaat))
{
$datum= $rij['datum'];
$id= $rij['id'];
$titel= $rij['titel'];
$naam= $rij['naam'];
$bericht= $rij['bericht'];
$foto= $rij['foto'];
echo '
<div class="nieuws_hr"> <div class="nieuws_titel">
<a href="http://pretparkgids.altervista.org/index.php?p=artikel&id='.$id.'">'.$titel.'</a>
</div>
<div class="nieuws_left_image">
<a href="url"><img src="'.$foto.'" width=200; height=150; /></a>
</div>
<div class="nieuws_intro"><div class="nieuws_datum"><span>'.$datum.'</span></div>
'.$bericht.'
<span class="nieuws_meer">
<a href="http://pretparkgids.altervista.org/index.php?p=artikel&id='.$id.'">Meer</a></span>
<div class="nieuws_geplaats"> Geplaatst door: '.$naam.'</div>
</div></div>
';
}
}
?>
substr en lees de info.
Klik eens op 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
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
<?php
include("connect.php");
include("functions.php");
$query = "SELECT * FROM `topics` WHERE weergeven = '1' ORDER BY datum DESC LIMIT 0,5";
$resultaat = mysql_query($query) or die(mysql_error());
$aantal = mysql_num_rows($resultaat);
if($aantal >= 1)
{
while($rij = mysql_fetch_array($resultaat))
{
$datum= $rij['datum'];
$id= $rij['id'];
$titel= $rij['titel'];
$naam= $rij['naam'];
$bericht= $rij['bericht'];
$foto= $rij['foto'];
if(strlen($bericht) > 100) {
$bericht = substr($bericht,0,100);
}
echo '
<div class="nieuws_hr"> <div class="nieuws_titel">
<a href="http://pretparkgids.altervista.org/index.php?p=artikel&id='.$id.'">'.$titel.'</a>
</div>
<div class="nieuws_left_image">
<a href="url"><img src="'.$foto.'" width=200; height=150; /></a>
</div>
<div class="nieuws_intro"><div class="nieuws_datum"><span>'.$datum.'</span></div>
'.$bericht.'
<span class="nieuws_meer">
<a href="http://pretparkgids.altervista.org/index.php?p=artikel&id='.$id.'">Meer</a></span>
<div class="nieuws_geplaats"> Geplaatst door: '.$naam.'</div>
</div></div>
';
}
}
?>
include("connect.php");
include("functions.php");
$query = "SELECT * FROM `topics` WHERE weergeven = '1' ORDER BY datum DESC LIMIT 0,5";
$resultaat = mysql_query($query) or die(mysql_error());
$aantal = mysql_num_rows($resultaat);
if($aantal >= 1)
{
while($rij = mysql_fetch_array($resultaat))
{
$datum= $rij['datum'];
$id= $rij['id'];
$titel= $rij['titel'];
$naam= $rij['naam'];
$bericht= $rij['bericht'];
$foto= $rij['foto'];
if(strlen($bericht) > 100) {
$bericht = substr($bericht,0,100);
}
echo '
<div class="nieuws_hr"> <div class="nieuws_titel">
<a href="http://pretparkgids.altervista.org/index.php?p=artikel&id='.$id.'">'.$titel.'</a>
</div>
<div class="nieuws_left_image">
<a href="url"><img src="'.$foto.'" width=200; height=150; /></a>
</div>
<div class="nieuws_intro"><div class="nieuws_datum"><span>'.$datum.'</span></div>
'.$bericht.'
<span class="nieuws_meer">
<a href="http://pretparkgids.altervista.org/index.php?p=artikel&id='.$id.'">Meer</a></span>
<div class="nieuws_geplaats"> Geplaatst door: '.$naam.'</div>
</div></div>
';
}
}
?>
Gewijzigd op 04/11/2012 13:51:59 door Bo Ter Ham
function Teller(tekstveld,maxlengte) {
var teller = document.forms[0].elements['teller'];
if (tekstveld.value.length > maxlengte) { // te lang, inkorten
tekstveld.value = tekstveld.value.substring(0, maxlengte);
window.alert('U hebt het maximaal aantal tekens bereikt!\n\nYou have reached the maximum number of characters!\n\nVous avez atteint le nombre maximal de caractères!\n\n');
}
else { // update tellerwaarde
teller.value = maxlengte - tekstveld.value.length;
}
}
</script>
Code (php)
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
<?php
hier uw code
echo'
<textarea name="tekst" cols="47" rows="5" onkeyup="Teller(this, 680)" onkeydown="Teller(this, 680)">'.$_POST["tekst"].'</textarea><br />
<input type="text" name="teller" value="680" size="2"></input> Tekens resterend
<br />
';
?>
hier uw code
echo'
<textarea name="tekst" cols="47" rows="5" onkeyup="Teller(this, 680)" onkeydown="Teller(this, 680)">'.$_POST["tekst"].'</textarea><br />
<input type="text" name="teller" value="680" size="2"></input> Tekens resterend
<br />
';
?>
Waarom regel 15 t/m 20? Zinloos aanmaken/kopiëren van variabelen.