Explode van andere site.
SunTzu
09/02/2006 10:13:00Op 30 December 2005, had niek een script over explode uitgelegd.
Ik heb een nieuwsbericht van macosx.nl afgehaald, alleen wanneer ik over de links ga krijg ik:
http://www.dreamix-design.com/newsflash.php?id=712
ipv
http://www.macosx.nl/newsflash.php?id=712
Hoe kun je ook bij dit script een stylesheet opgeven/toevoegen aan de code die je al heb?
hier is de code die ik nu gebruik:
resultaat:
http://www.dreamix-design.com/nieuws.php
Ik heb een nieuwsbericht van macosx.nl afgehaald, alleen wanneer ik over de links ga krijg ik:
http://www.dreamix-design.com/newsflash.php?id=712
ipv
http://www.macosx.nl/newsflash.php?id=712
Hoe kun je ook bij dit script een stylesheet opgeven/toevoegen aan de code die je al heb?
hier is de code die ik nu gebruik:
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
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Totaal bezoekers</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
<!--
body {
font-size: 11px;
font-family:Verdana, Arial, Helvetica, sans-serif
}
-->
</style>
</head>
<body>
<?php
$info = file_get_contents("http://www.macosx.nl");
$stand = explode("<h3>Nieuwsflitsen</h3>", $info);
$stand_2 = explode("</a></li></ul>", $stand[1]);
echo "$stand_2[0]";
?>
</body>
</html>
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Totaal bezoekers</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
<!--
body {
font-size: 11px;
font-family:Verdana, Arial, Helvetica, sans-serif
}
-->
</style>
</head>
<body>
<?php
$info = file_get_contents("http://www.macosx.nl");
$stand = explode("<h3>Nieuwsflitsen</h3>", $info);
$stand_2 = explode("</a></li></ul>", $stand[1]);
echo "$stand_2[0]";
?>
</body>
</html>
resultaat:
http://www.dreamix-design.com/nieuws.php
Gewijzigd op 09/02/2006 10:24:00 door SunTzu
PHP hulp
24/11/2024 15:17:43Erik Rijk
09/02/2006 10:38:00Klaasjan Boven
09/02/2006 12:15:00SunTzu
09/02/2006 13:34:00Hehe, nee dat wist ik al..
ik wil alleen bijvoorbeeld de h3 een class geven, maar dit kan niet doordat ik niet de output heb..
Is het mogelijk de output al een class te geven?
ik wil alleen bijvoorbeeld de h3 een class geven, maar dit kan niet doordat ik niet de output heb..
Is het mogelijk de output al een class te geven?
Niek Berckmans
09/02/2006 14:13:00[dubbelpost]
Gewijzigd op 09/02/2006 14:15:00 door Niek Berckmans