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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
<? include("top.php"); ?>
<!-- start site main content --> <section id="mainContent" style='margin-top: 70px;'> <? include("scrollnews.php"); ?>
<!-- start main content bottom --> <div class="content_bottom"> <div class="col-lg-8 col-md-8"> <!-- start content bottom left --> <div class="content_bottom_left">
<div class="single_page_area"> <ol class="breadcrumb"> <li><a href="index.php">HOME</a></li> <li><a href="redazione.php">REDAZIONE</a></li> </ol> <h2 class="post_titile">La redazione di Euroroma</h2> <div class="single_page_content">
<p> <? include("admin/setConn.php"); $special = new class_utility(); if ($db == FALSE) die ("Errore nella connessione."); $sql = "SELECT * FROM redazione WHERE ID=1"; $result = mysql_db_query("Sql603025_1", $sql, $db); while($results = mysql_fetch_array($result)){ $testo = $special->specialChars($results["testo"]); } if($url){ echo "<img src='".$url."' class='IMG-RESPONSIVE' />"; } echo $testo; mysql_close($db); ?> </p> <br> <a href='http://www.emporioantonelli.it' target='_blank'><img src='images/bannerEmporioAntonelli.jpg' width='100%' class='img-responsive'></a> <br> <br> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- Responsive orizzontale 1 --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5549117216645456" data-ad-slot="5436023121" data-ad-format="auto"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <br> <br> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- Responsive orizzontale 1 --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5549117216645456" data-ad-slot="5436023121" data-ad-format="auto"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <br>
</div> </div> </div><!--End content_bottom_left--> </div> <? include("menudx.php");?> </div><!-- end main content bottom --> </section><!-- End site main content --> </div> <!-- /.container --> <? include("foot.php");?>
|