18 lines
315 B
PHP
Executable File
18 lines
315 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;
|
|
}
|
|
|
|
|
|
?>
|