Hello everyone,
I'd like to integrate this script in php WebTemplate but unfortunately I can not do it?
Can anyone help me?
Code:
<?php
if(isset($_REQUEST['idf']))$idf=$_REQUEST['idf'];
else die("http://www.xxx.com/forum/?idf=ID");
$conn= mysql_connect('host','user','pass');
if(!$conn)die(mysql_error($conn));
$ris=mysql_select_db("dbnam",$conn);
if(!$ris)die(mysql_error());
?>
<html>
<head>
<title>Lista Automatica vBulletin</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<center>
<h1>Lista Automatica</h1>
<a href="#0">0</a> <a href="#1">1</a> <a href="#2">2</a> <a href="#3">3</a> <a href="#4">4</a>
<a href="#5">5</a> <a href="#6">6</a> <a href="#7">7</a> <a href="#8">8</a> <a href="#9">9</a>
<a href="#A">A</a> <a href="#B">B</a> <a href="#C">C</a> <a href="#D">D</a> <a href="#E">E</a>
<a href="#F">F</a> <a href="#G">G</a> <a href="#H">H</a> <a href="#I">I</a> <a href="#J">J</a>
<a href="#K">K</a> <a href="#L">L</a> <a href="#M">M</a> <a href="#N">N</a> <a href="#O">O</a>
<a href="#P">P</a> <a href="#Q">Q</a> <a href="#R">R</a> <a href="#S">S</a> <a href="#T">T</a>
<a href="#U">U</a> <a href="#V">V</a> <a href="#W">W</a> <a href="#X">X</a> <a href="#Y">Y</a>
<a href="#Z">Z</a> <a href="#TOP"></a>
</center>
<?php
$msg="select * from vb_thread where forumid=$idf and sticky=0 ORDER BY title ASC";
$query= mysql_query($msg);
if (!$query)die(mysql_error());
$l="";
while($riga= mysql_fetch_assoc($query)){
if(strcasecmp($l,substr($riga['title'],0,1))!=0){
$l=substr($riga['title'],0,1);
?>
<br>
<a name="<?php echo strtoupper ($l) ?>"><?php
echo strtoupper("<font color='#4b4b4b' size='5'><strong>$l</strong></font>");
echo " <a href='#TOP'><img src='top.gif' border='0'></a>";
echo "<br>";
echo "<br>";
}
?></a>
<a href="showthread.php?<?php echo $riga['threadid']."-".$riga['title'] ?>" target="_blank"><?php echo $riga['title']?></a>
<br />
<?php } ?>
Thanks for all! :up: