-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
51 lines (45 loc) · 1.21 KB
/
index.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
<?php
include "partials/header.php"
?>
<div class="container">
<div class="card">
<div class="card-header">
<h3>Enter rss feed url</h3>
</div>
<div class="card-body">
<form action="" method="POST">
<div class="form-group">
<label for="url">Enter rss feed url</label>
<input type="text" class="form-control" name="url">
</div>
<button class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
<?php
if ($_POST['url']) :
$url = $_POST['url'];
$feed = simplexml_load_file($url);
echo "<br>";
echo "<hr>";
foreach($feed->channel->item as $item) :
?>
<div class="container">
<div class="card">
<div class="card-header">
<h5 class="card-title"><?php echo $item->title ?></h5>
</div>
<div class="card-body">
<p>
<?php echo $item->description ?>
<a href="<?php echo $item->link ?>" target="_blank"> Read more...</a>
</p>
</div>
</div>
</div>
<?php
endforeach;
endif;
include "partials/footer.php"
?>