| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | $Rev$ | $LastChangedBy$ |
|---|
| 4 | $LastChangedDate$ |
|---|
| 5 | +-------------------------------------------------------------------------+ |
|---|
| 6 | | Copyright (c) 2004 - 2007, Kreotek LLC | |
|---|
| 7 | | All rights reserved. | |
|---|
| 8 | +-------------------------------------------------------------------------+ |
|---|
| 9 | | | |
|---|
| 10 | | Redistribution and use in source and binary forms, with or without | |
|---|
| 11 | | modification, are permitted provided that the following conditions are | |
|---|
| 12 | | met: | |
|---|
| 13 | | | |
|---|
| 14 | | - Redistributions of source code must retain the above copyright | |
|---|
| 15 | | notice, this list of conditions and the following disclaimer. | |
|---|
| 16 | | | |
|---|
| 17 | | - Redistributions in binary form must reproduce the above copyright | |
|---|
| 18 | | notice, this list of conditions and the following disclaimer in the | |
|---|
| 19 | | documentation and/or other materials provided with the distribution. | |
|---|
| 20 | | | |
|---|
| 21 | | - Neither the name of Kreotek LLC nor the names of its contributore may | |
|---|
| 22 | | be used to endorse or promote products derived from this software | |
|---|
| 23 | | without specific prior written permission. | |
|---|
| 24 | | | |
|---|
| 25 | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
|---|
| 26 | | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
|---|
| 27 | | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
|---|
| 28 | | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
|---|
| 29 | | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
|---|
| 30 | | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
|---|
| 31 | | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
|---|
| 32 | | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
|---|
| 33 | | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
|---|
| 34 | | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
|---|
| 35 | | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
|---|
| 36 | | | |
|---|
| 37 | +-------------------------------------------------------------------------+ |
|---|
| 38 | */ |
|---|
| 39 | require ("include/session.php"); |
|---|
| 40 | |
|---|
| 41 | function isUnique($tablename,$column,$value,$excludeid,$db){ |
|---|
| 42 | |
|---|
| 43 | $thereturn=false; |
|---|
| 44 | |
|---|
| 45 | $querystatement="SELECT count(id) AS thecount FROM ".$tablename." WHERE ".$column."=\"".$value."\" AND id!=".$excludeid; |
|---|
| 46 | $queryresult=$db->query($querystatement); |
|---|
| 47 | if($queryresult){ |
|---|
| 48 | $therecord=$db->fetchArray($queryresult); |
|---|
| 49 | if($therecord["thecount"]==0) |
|---|
| 50 | $thereturn=true; |
|---|
| 51 | } |
|---|
| 52 | |
|---|
| 53 | return $thereturn; |
|---|
| 54 | } |
|---|
| 55 | |
|---|
| 56 | |
|---|
| 57 | $isunique=false; |
|---|
| 58 | |
|---|
| 59 | if(isset($_GET["tdid"]) && isset($_GET["c"]) && isset($_GET["val"]) && isset($_GET["xid"])) { |
|---|
| 60 | $_GET["tdid"]=((int) $_GET["tdid"]); |
|---|
| 61 | $_GET["xid"]=((int) $_GET["xid"]); |
|---|
| 62 | |
|---|
| 63 | $querystatement="SELECT maintable FROM tabledefs WHERE id=".$_GET["tdid"]; |
|---|
| 64 | $queryresult=$db->query($querystatement); |
|---|
| 65 | if($queryresult) |
|---|
| 66 | if($therecord=$db->fetchArray($queryresult)) |
|---|
| 67 | $isunique=isUnique($therecord["maintable"],$_GET["c"],$_GET["val"],$_GET["xid"],$db); |
|---|
| 68 | } |
|---|
| 69 | |
|---|
| 70 | header('Content-Type: text/xml'); |
|---|
| 71 | echo '<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>'; |
|---|
| 72 | ?> |
|---|
| 73 | <response> |
|---|
| 74 | <isunique><?php echo ((int) $isunique) ?></isunique> |
|---|
| 75 | </response> |
|---|