Re: [PHP] Questions from a Newbie

2010-10-17 Thread Christian Heinrich
Am Sonntag, den 17.10.2010, 01:00 -0400 schrieb Ethan Rosenberg: > Dear List - > > Here are some questions, which I am sure are trivial, but I am a > newbie, and cannot find the answers online > > I cannot get the following to work. In my Firefox [Iceweasel] > browser, I enter the followin

[PHP] Using mysqli_stmt_bind_param in a class - with variable parameters?

2007-03-02 Thread Christian Heinrich
y work out, either. Now, my question is: What can I do to solve this problem? Is there any elegant way of doing this? Thanks in advance for any inspiration (and I hope I could make myself clear). Yours sincerely Christian Heinrich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Manual contradiction concerning string access?

2007-02-20 Thread Christian Heinrich
at if someone could solve that contradiction within the manual, too. Thanks in advance. Sincere regards Christian Heinrich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] ChangeLog PHP 5.2.0 - Fileupload

2006-11-04 Thread Christian Heinrich
is meant by that and what its used for? Thanks in advance. Greetings from Germany Yours sincerely Christian Heinrich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] User question for PHP

2006-10-19 Thread Christian Heinrich
try suPHP :-) Is it possible to have a PHP script execute as the user of the domain instead of the webserver? So when I upload files through a PHP script they are owned by me and not "wwwrun" or "nobody"? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.ph

Re: [PHP] Mail and hotmail

2006-05-04 Thread Christian Heinrich
Hi Peter, RFC 2156 (http://www.faqs.org/rfcs/rfc2156.html) defines the importance header as following: importance = "low" / "normal" / "high" Which means that you can either use the values low, normal or high HTH, Christian The only one I do not know what to set it to is "Importance"

Re: [PHP] security while building online store

2005-08-30 Thread Christian Heinrich
Hi, most probably, things like XSS (Cross-Site-Scripting) and SQL-Injections might lead to a successfull hacking-attempt. If you try to write your own online store, make sure that you do NOT use register_globals! Try to google for XSS and SQL-Injections, there might be plenty of information

Re: [PHP] using require

2005-06-11 Thread Christian Heinrich
Hi, this depends on which connection-function you've used. If you've decided to use pg_pconnect(), there is just one connection. If you use pg_connect, everytime a new connection is established (and after finishing the script, it's closed though) HTH Christian hi all, i have my web site w

Re: [PHP] Best Server OS

2005-03-28 Thread Christian Heinrich
I prefer Debian 3.1 .. Everyones taste is quite different, so I suggest to install some test-installations of those different OS - and you have the choice. Christian Phil Neeb schrieb: I'm lookin for some opinions on this one ... What do you think the best OS is for running a server with PHP and

Re: [PHP] NEWBIE: Can't Get My Loop Going. . .

2005-03-28 Thread Christian Heinrich
Hello Jack, you simply forgot an echo. Also, have a look at print_r, which is very very useful for debugging. Greetings from Germany, Christian Jackson Linux schrieb: Hello all, I am a newbie trying to build a set of links to content in a db. I am connecting with the db and seeing the proper numb

Re: [PHP] mysql query update two table in one?

2005-03-10 Thread Christian Heinrich
Tyler Replogle schrieb: Can you update two tables in one mysql query i've got these two queries $db->query("update `dbn_members_counters` set views =(views +1) where id = '$this->id' "); $db->query("update `dbn_members` set lastaction = $conf->site_time, page = '$this->page' where id = '$this->i