f7af9ddfa9
Files correlati : Ricompilazione Demo : [ ] Commento : Prime modifiche git-svn-id: svn://10.65.10.50/trunk@9788 c028cbd2-c16b-5b4b-a496-9718f37d4682
18 lines
298 B
PHP
Executable File
18 lines
298 B
PHP
Executable File
|
|
<?php
|
|
|
|
include("required.php");
|
|
|
|
function righe($tabella)
|
|
{
|
|
$db = mysql_connect($ip, $user, $password);
|
|
mysql_select_db($dataname,$db);
|
|
$criteri = "SELECT * FROM $tabella";
|
|
$result = mysql_query($criteri, $db);
|
|
//$myrow = mysql_fetch_array($result);
|
|
//return $myrow;
|
|
return $result;
|
|
}
|
|
|
|
|
|
?>
|