Your IP : 216.73.217.117


Current Path : /var/www/cesa.co.za/autosuggest/
Upload File :
Current File : /var/www/cesa.co.za/autosuggest/firms.php

<?php
header("Content-type: text/xml");

/*the returned xml has the following structure
<results>
	<rs>foo</rs>
	<rs>bar</rs>
</results>*/

include("../php/inc_db.php");

$SearchField = "FirmName";
?><results>
<?php
	
	$sSqlWrk = "SELECT FirmID, FirmName FROM tblMemberFirms
	WHERE UPPER(FirmName) LIKE '%".strtoupper($_GET["Input"])."%' AND MemberStatus='Member' ORDER BY FirmName";
	//echo $sSqlWrk;
	$recwrk = mysql_query($sSqlWrk);
	while ($rswrk = mysql_fetch_assoc($recwrk)) {
		$sDisplay = trim($rswrk["FirmName"]."");
?><rs id="<?php echo $rswrk["FirmName"]; ?>" info="<?php echo $rswrk["FirmID"]; ?>"><?php echo $sDisplay; ?></rs>
<?php
	}
	mysql_free_result($recwrk);
?></results>