J
|
Jane 9/27/2006 |
Greg, |
G
|
gawde author 9/27/2006 |
Hi Jane, |
J
|
Jane 9/28/2006 |
Greg, ... $strSQLExists = "select * from _GlassShape where GlassID = ".$values["GlassID"]; $rsExists = db_query($strSQLExists,$conn); $data=db_fetch_array($rsExists); if($data) { $values["GlassDiam"] = "'".$data["GlassDiam"]."'"; $values["GlassDiammm"] = "'".$data["GlassDiammm"]."'"; } else { echo "<script> alert('Glass Shape ID ".str_replace("'","\"",$values["GlassID"])." not found in Glass Shape table.'); </script>"; return false; } ... |
G
|
gawde author 9/28/2006 |
Thanks Jane. That did the trick. |