La funzione get_table_campo sta in util.php nella cartella c:\..\miosito\include
function get_table_campo($table,$campo,$where,$value)
{
$sql="select $campo from $table where $where='$value'";
$res=mysql_query($sql)or die("Errore : $sql");
$row=mysql_fetch_array($res);
return $row[$campo];
In index.html che sta in c:\..\miosito\public_html c'è:
<?php include ("C:\Programmi\EasyPHP\www\miosito\include\prepend .inc");?>
<?php
dove prepend.inc che sta in c:\..\mio sito\include contiene
<?php
setlocale (LC_ALL,"italian");
include("openDB.php");
include("util.php");
include("util2.php");
?>
Quindi pare che la funzione get_table_campo sia stata caricata!!