[bglug] Php e SQL

Mila76 mila76@mila76.it
Lun 8 Maggio 2006 18:45:25 CEST


> Sapete come posso fare? 
> Con query = "show tables;"; mi restituisce un 'Object' per 

come tutte le query del resto... :D

> ogni tabella ma poi non so come operare su qst...

una cosa cosė?? :D

<?php

$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
    die('Could not connect: ' . mysql_error());
}

$db_selected = mysql_select_db('foo', $link);
if (!$db_selected) {
    die ('Can\'t use foo : ' . mysql_error());
}

$result = mysql_query("SHOW TABLES LIKE 'mex_%'");
if (!$result) {
    die ('Invalid query: ' . mysql_error());
}

$array_table = mysql_fetch_array($result);

foreach ($array_table as $table) {
	$result = mysql_query("SELECT * FROM $table"); 
	while ($row = mysql_fetch_array($result, MYSQL_NUM)) {
    	    print_r($row);  
	}	
}

?>

Ciao da Mila76
p.s. non fa niente di male ma stai cmq attento, se ci sono molti dati
potrebbe far crashare php/browser/apache :D



Maggiori informazioni sulla lista bglug