Hi again,
I haven't been successful in finding info on dealing with spaces in table and column names. I'm involved in a project where I'm building web front-ends to data-sets in MS-SQL databases that haven't been constructed very well. Many of the tables contain spaces in the table names and spaces in the column names.
I'm mainly using queries that look like this:
<?php
Connection stuff here...
function build_eds_subject_matter_expertise() {
$query_string = "select Expertise,Employee Name,Email,ARS Team,Phone,AIM,Menu Test from EDS Subject Matter Expertise where Status = 0";
And the rest of the stuff here...
?>
Any help would be appreciated...hopefully I haven't overlooked a posting that already explains this.
Adam.