Visualizzazione dei risultati da 1 a 4 su 4
  1. #1
    Utente di HTML.it
    Registrato dal
    May 2004
    Messaggi
    507

    interfaccia administrator

    Ciao a tutti
    premettendo che non sono una cima in php..avrei bisogno di un interfaccia con la quale l'utente può visualizzare i dati presenti in un database mysql (un solo campo email) ed eventualmente esportare i dati in formato txt o excel, in modo da avere una lista di indirizzi email a cui inviare una newsletter

    Sapete indicarmi se esistono dei source da cui partire per adattarli - considerando che se devo stravolgere tutto non sono molto in grado..

    Grazie milla

  2. #2

  3. #3
    source.php
    Codice PHP:
    <?php
    /*
     * File Name: Database.php
     * Date: November 18, 2008
     * Author: Angelo Rodrigues
     * Description: Contains database connection, result
     *              Management functions, input validation
     *
     *              All functions return true if completed
     *              successfully and false if an error
     *              occurred
     *
     */
    class Database
    {

        
    /*
         * Edit the following variables
         */
        
    private $db_host 'localhost';     // Database Host
        
    private $db_user 'root';          // Username
        
    private $db_pass 'root';          // Password
        
    private $db_name 'blog';          // Database
        /*
         * End edit
         */

        
    private $con false;               // Checks to see if the connection is active
        
    private $result = array();          // Results that are returned from the query

        /*
         * Connects to the database, only one connection
         * allowed
         */
        
    public function connect()
        {
            if(!
    $this->con)
            {
                
    $myconn = @mysql_connect($this->db_host,$this->db_user,$this->db_pass);
                if(
    $myconn)
                {
                    
    $seldb = @mysql_select_db($this->db_name,$myconn);
                    if(
    $seldb)
                    {
                        
    $this->con true;
                        return 
    true;
                    }
                    else
                    {
                        return 
    false;
                    }
                }
                else
                {
                    return 
    false;
                }
            }
            else
            {
                return 
    true;
            }
        }

        
    /*
        * Changes the new database, sets all current results
        * to null
        */
        
    public function setDatabase($name)
        {
            if(
    $this->con)
            {
                if(@
    mysql_close())
                {
                    
    $this->con false;
                    
    $this->results null;
                    
    $this->db_name $name;
                    
    $this->connect();
                }
            }

        }

        
    /*
        * Checks to see if the table exists when performing
        * queries
        */
        
    private function tableExists($table)
        {
            
    $tablesInDb = @mysql_query('SHOW TABLES FROM '.$this->db_name.' LIKE "'.$table.'"');
            if(
    $tablesInDb)
            {
                if(
    mysql_num_rows($tablesInDb)==1)
                {
                    return 
    true;
                }
                else
                {
                    return 
    false;
                }
            }
        }

        
    /*
        * Selects information from the database.
        * Required: table (the name of the table)
        * Optional: rows (the columns requested, separated by commas)
        *           where (column = value as a string)
        *           order (column DIRECTION as a string)
        */
        
    public function select($table$rows '*'$where null$order null)
        {
            
    $q 'SELECT '.$rows.' FROM '.$table;
            if(
    $where != null)
                
    $q .= ' WHERE '.$where;
            if(
    $order != null)
                
    $q .= ' ORDER BY '.$order;

            
    $query = @mysql_query($q);
            if(
    $query)
            {
                
    $this->numResults mysql_num_rows($query);
                for(
    $i 0$i $this->numResults$i++)
                {
                    
    $r mysql_fetch_array($query);
                    
    $key array_keys($r);
                    for(
    $x 0$x count($key); $x++)
                    {
                        
    // Sanitizes keys so only alphavalues are allowed
                        
    if(!is_int($key[$x]))
                        {
                            if(
    mysql_num_rows($query) > 1)
                                
    $this->result[$i][$key[$x]] = $r[$key[$x]];
                            else if(
    mysql_num_rows($query) < 1)
                                
    $this->result null;
                            else
                                
    $this->result[$key[$x]] = $r[$key[$x]];
                        }
                    }
                }
                return 
    true;
            }
            else
            {
                return 
    false;
            }
        }

        
    /*
        * Insert values into the table
        * Required: table (the name of the table)
        *           values (the values to be inserted)
        * Optional: rows (if values don't match the number of rows)
        */
        
    public function insert($table,$values,$rows null)
        {
            if(
    $this->tableExists($table))
            {
                
    $insert 'INSERT INTO '.$table;
                if(
    $rows != null)
                {
                    
    $insert .= ' ('.$rows.')';
                }

                for(
    $i 0$i count($values); $i++)
                {
                    if(
    is_string($values[$i]))
                        
    $values[$i] = '"'.$values[$i].'"';
                }
                
    $values implode(',',$values);
                
    $insert .= ' VALUES ('.$values.')';

                
    $ins = @mysql_query($insert);

                if(
    $ins)
                {
                    return 
    true;
                }
                else
                {
                    return 
    false;
                }
            }
        }

        
    /*
        * Deletes table or records where condition is true
        * Required: table (the name of the table)
        * Optional: where (condition [column =  value])
        */
        
    public function delete($table,$where null)
        {
            if(
    $this->tableExists($table))
            {
                if(
    $where == null)
                {
                    
    $delete 'DELETE '.$table;
                }
                else
                {
                    
    $delete 'DELETE FROM '.$table.' WHERE '.$where;
                }
                
    $del = @mysql_query($delete);

                if(
    $del)
                {
                    return 
    true;
                }
                else
                {
                    return 
    false;
                }
            }
            else
            {
                return 
    false;
            }
        }

        
    /*
         * Updates the database with the values sent
         * Required: table (the name of the table to be updated
         *           rows (the rows/values in a key/value array
         *           where (the row/condition in an array (row,condition) )
         */
        
    public function update($table,$rows,$where)
        {
            if(
    $this->tableExists($table))
            {
                
    // Parse the where values
                // even values (including 0) contain the where rows
                // odd values contain the clauses for the row
                
    for($i 0$i count($where); $i++)
                {
                    if(
    $i%!= 0)
                    {
                        if(
    is_string($where[$i]))
                        {
                            if((
    $i+1) != null)
                                
    $where[$i] = '"'.$where[$i].'" AND ';
                            else
                                
    $where[$i] = '"'.$where[$i].'"';
                        }
                    }
                }
                
    $where implode('',$where);


                
    $update 'UPDATE '.$table.' SET ';
                
    $keys array_keys($rows);
                for(
    $i 0$i count($rows); $i++)
                {
                    if(
    is_string($rows[$keys[$i]]))
                    {
                        
    $update .= $keys[$i].'="'.$rows[$keys[$i]].'"';
                    }
                    else
                    {
                        
    $update .= $keys[$i].'='.$rows[$keys[$i]];
                    }

                    
    // Parse to add commas
                    
    if($i != count($rows)-1)
                    {
                        
    $update .= ',';
                    }
                }
                
    $update .= ' WHERE '.$where;
                
    $query = @mysql_query($update);
                if(
    $query)
                {
                    return 
    true;
                }
                else
                {
                    return 
    false;
                }
            }
            else
            {
                return 
    false;
            }
        }

        
    /*
        * Returns the result set
        */
        
    public function getResult()
        {
            return 
    $this->result;
        }
    }
    ?>
    show.php
    Codice PHP:
    <?php;   
    include(
    'source.php');   
    $db = new Database();   
    $db->connect();   
    $db->select('nometabella');   //modifica col nome della tabella
    $res $db->getResult();   
    while(!empty(
    $res)){
    echo 
    $res[id];
    echo 
    '
    '
    ;
    echo 
    $res[email];
    echo 
    '
    '
    ;
    }
    echo 
    '[url="get.php"]Scarica in formato txt[/url]';
    ?>
    get.php
    Codice PHP:
    <?php
    include('source.php');
    $db = new Database();   
    $db->connect();   
    $db->select('nometabella');   //modifica col nome della tabella
    $res $db->getResult('email');   
    print_r($res);
    $filename="download.txt";
    $var=fopen($filename,"w+");
    $filepath$_SERVER['PHP_SELF'];
    $dir dirname($filepath);
    fwrite($var,$res);
    fclose($var);
    echo 
    '[url="{$dir$filename}"]Scarica[/url]';
    ?>
    non l'ho testato ma dovrebbe andare

  4. #4
    Utente di HTML.it
    Registrato dal
    May 2004
    Messaggi
    507
    mi dà errore alla riga 20

    parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.