Still isn't working I'm not sure what I'm doing wrong. If I just make $id = "1", it works...but $_GET['id'] isn't getting the "1" out of the id column of the db and applying it.
When I just try adding:
if (!isset($_GET['id']) die("ID not set...");
I get an error on the line where this code is added, which is line 6...
Parse error: syntax error, unexpected T_EXIT in E:\web\joshwiserac\htdocs\admin\photos\photos.php on line 6
Just adding the @ before $_GET['id']; also produces an SQL error:
Warning: odbc_exec() [function.odbc-exec]: SQL error: [Microsoft][ODBC SQL Server Driver]
Invalid object name 'photos'., SQL state S0002 in SQLExecDirect in E:\web\joshwiserac\htdocs\admin\photos\photos.php on line 16
[color=red][b]Anyway, maybe I'm doing something completely wrong that is messing everything up, so here's the original code that works on a linux server with mysql. I had to make some changes to try to get it to work properly on the windows server with a MSSQL 2005 db...but may have made some mistakes in converting it...[/b][/color]
[code=php:0]
<?php
// GET MONTHS
$id = $_GET['id'];
//--------define connectivity information
$database = "db_name_here";
$table = "photos$id";
$user = "user_name_here";
$password = "password_here";
//-------connect to database
mysql_connect("localhost", $user, $password) or die("Could not connect to database");
mysql_select_db($database) or die("Could not select database");
//-------Query database
$query = "SELECT * FROM $table"; //ORDER BY date ASC";
$myQuery = mysql_query($query);
//-------manage data
while($row = mysql_fetch_array($myQuery)) {
$photos[] = $row['photo'];
$descriptions[] = $row['description'];
$thumbnails[] = $row['thumbnail'];
}
//------close connection
mysql_close();
// MAKE THE XML DOC
header("Content-Type: application/xml; charset=ISO-8859-1");
echo '<?xml version="1.0" encoding="iso-8859-1"?>' . "\n";
echo '<master>' . "\n";
for ($i=0; $i<count($photos); $i++) {
echo '<node photo="' . $photos[$i] . '" description="' .$descriptions[$i] . '" thumbnail="' .$thumbnails[$i] . '"/>' . "\n";
}
echo '</master>';
?>
[/code]