View Single Post
ישן 30-09-08, 16:02   # 2
SDF
חבר בקהילה
דירוג מסחר: (0)
 
מיני פרופיל
תאריך הצטרפות: Sep 2006
מיקום: Negev
הודעות: 270

SDF לא מחובר  

1. אני מניח שאתה מתכוון לשרת ולא ללקוח:
קוד:
cd /usr/ports/audio/teamspeak_server/ && make install clean
2. אפאצי'

קוד:
cd /usr/ports/www/apache22/ && make install clean
3.
PHP קוד:
/*
** Connect to database:
*/
 
// Connect to the database (host, username, password)
$con mssql_connect('ihsun2.someserver.com','user','pass'
    or die(
'Could not connect to the server!');
 
// Select a database:
mssql_select_db('Northwind'
    or die(
'Could not select a database.');
 
// Example query: (TOP 10 equal LIMIT 0,10 in MySQL)
$SQL "SELECT TOP 10 * FROM ExampleTable ORDER BY ID ASC";
 
// Execute query:
$result mssql_query($SQL
    or die(
'A error occured: ' mysql_error());
 
// Get result count:
$Count mssql_num_rows($result);
print 
"Showing $count rows:<hr/>\n\n";
 
// Fetch rows:
while ($Row mssql_fetch_assoc($result)) {
 
    print 
$Row['Fieldname'] . "\n";
 
}
 
mssql_close($con); 
__________________
FreeBSD, a *nix operating system