Mohamed Lrhazi wrote:

I am using a PHP application called modernbill, which uses iocube
encoder... PHP very frequently dies with SIG fault... 4.3 dies
systematically

While working on this problem I stumbled on this behavior :

In my code, I have something like this:

$table_customer="customer";
$sql="select * from [$table_customer] where [id] = '$id' ";

Try $sql = "SELECT * FROM ".$table_customer." WHERE id = '".$id."'";
and see if you get the same error. If you are using MSSQL, I think that [ ] are optional, but I could be mistaken.


[ snip ]


-- Burhan Khalid phplist[at]meidomus[dot]com http://www.meidomus.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to