salve, avrei un problemino spero stavolta possiate gentilmente risolvermelo! ho scaricato uno script in php e un sistema di votazione (stelline) ma non riesco a farlo funzionare prima x il server che ho attivo di livello 2 poi non riesco a capire come funziona..qualche anima buona potrebbe aiutarmi a capire meglio ? vi posto (non so se e giusto farlo) eventualmente mi scuso in anticipo! o dato un'occhiata in giro sul 4rum ma senza risultati.... grazie in anticipo!
la pagina del server e questa
Codice PHP:
<?php
/*
Page: _config-rating.php
Created: Aug 2006
Last Mod: Mar 18 2007
Holds info for connecting to the db, and some other vars
---------------------------------------------------------
ryan masuga, masugadesign.com
[email]ryan@masugadesign.com[/email]
Licensed under a Creative Commons Attribution 3.0 License.
[url]http://creativecommons.org/licenses/by/3.0/[/url]
See readme.txt for full credit details.
--------------------------------------------------------- */
//Connect to your rating database
$rating_dbhost = 'localhost';
$rating_dbuser = 'misterbilly';
$rating_dbpass = '';
$rating_dbname = 'my_misterbilly';
$rating_tableName = '';
$rating_path_db = ''; // the path to your db.php file (not used yet!)
$rating_path_rpc = ''; // the path to your rpc.php file (not used yet!)
$rating_unitwidth = 30; // the width (in pixels) of each rating unit (star, etc.)
// if you changed your graphic to be 50 pixels wide, you should change the value above
$rating_conn = mysql_connect($rating_dbhost, $rating_dbuser, $rating_dbpass) or die ('Error connecting to mysql');
//mysql_select_db($rating_dbname);
?>