[PHP] captcha on bugs.php.net/report.php doesn't work

2005-07-14 Thread aRZed
hy! i have a simple problem when i try to report a bug. the captcha doesn't work. the script doesn't send any output at all. so i think my bug-report must wait ... is anybody else expieriencing this problem? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.

Re: [PHP] interesting behavior of ob_end_flush() in __destruct()

2004-09-25 Thread aRZed
ed ?> it seems that the destructor is called when output buffering is still deactivated but the connection to the client is active. i consider it a bit strange that output buffering is deactivated when there is still the possibility of passing something to the browser. greets aRZed -- PHP

[PHP] interesting behavior of ob_end_flush() in __destruct()

2004-09-24 Thread aRZed
o buffer to delete. in ... but this functions very well. it seems that php first ends output buffering and then calls then destrcuts the objects. so the output buffering is still ended when the destructor is calles. one has to unset the object to reverse that order manually. aRZed -- PHP

[PHP] just another question

2004-08-23 Thread aRZed
Arzed wrote: Hy! I have a relative simple question about mysqli_prepare: When I prepare a statement and then bind parameters to it, does php automatically care for escaping strings etc.? Example: prepare("SELECT FROM table WHERE x=?"); $p = "5'" $stmt->

[PHP] mysqli_escape_string vs. mysqli_prepare

2004-08-21 Thread aRZed
Hy! I have a relative simple question about mysqli_prepare: When I prepare a statement and then bind parameters to it, does php automatically care for escaping strings etc.? Example: prepare("SELECT FROM table WHERE x=?"); $p = "5'" $stmt->bind_param("i",$p); # is "5'" converted to 5 lik

[PHP] PHP5: problem with mysqli_prepare/mysqli_bind_param

2004-08-20 Thread aRZed
[snip] 172: $q = $this->DB["cms"]->prepare("SELECT t.Extension FROM Site_Mime as m,Type as t WHERE m.SNr=? && m.TNr=t.Nr"); 173: $q->bind_param("i",$this->Site["Nr"]); 174: $q->execute(); 175: $q->store_result(); [/snip] I've got a very serious problem in big class, but these two lines are proba

Re: [PHP] Cannot Load DLLs (WinXP, Apache 2, PHP 5)

2004-08-20 Thread aRZed
Hy! You have to restart windows after changing the path-variable, else it has no effect. it it functioning for me -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP, over javascript code simple \n

2004-08-20 Thread aRZed
try simply escaping the "\" before the "n" with an additional "\" or in other words: use "\\n" instead of "\n". PHP will interpret "\\" as an "\". -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php