Re: [PHP] PHP and HBCI?

2010-10-08 Thread Stephan Ebelt
any specifications for HBCI interfaces? Socket connection, > XML Exchange, DB Access ? If you have C code for such things, it should > be possible to convert this to php code maybe > > Stephan Ebelt schrieb: >> On Fri, Oct 08, 2010 at 01:50:12PM +0100, a...@ashleysheridan.co.uk

Re: [PHP] PHP and HBCI?

2010-10-08 Thread Stephan Ebelt
nt to process payments? Or wad it more of an > actual banking thing you needed? I've not heard of hbci before, so can't > offer much information back. > > Thanks, > Ash > http://www.ashleysheridan.co.uk > > - Reply message - > From: "Stephan Ebelt"

Re: [PHP] PHP and HBCI?

2010-10-08 Thread Stephan Ebelt
that from PHP code, only C and Java so far. My goal for now would be to access bank account statements in order to show the balances. I am not too eager to issue transactions. thanks, stephan > Thanks, > Ash > http://www.ashleysheridan.co.uk > > - Reply message - &g

[PHP] PHP and HBCI?

2010-10-08 Thread Stephan Ebelt
Hello, is there a way to do HBCI banking with PHP? stephan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] howto run sql script with php?

2010-06-13 Thread Stephan Ebelt
On Sun, Jun 13, 2010 at 12:52:18PM +0200, Stephan Ebelt wrote: [...] > > Use mysqli - it supports running multiple queries at once. > > sometimes its as easy as that. I'll give it a try. not quite as easy: mysqli->multi_query() works nice with many queries in a string but t

Re: [PHP] howto run sql script with php?

2010-06-13 Thread Stephan Ebelt
On Sun, Jun 13, 2010 at 12:14:53PM +0100, Ashley Sheridan wrote: >On Sun, 2010-06-13 at 12:52 +0200, Stephan Ebelt wrote: > > On Sun, Jun 13, 2010 at 11:29:14AM +0200, Peter Lind wrote: > > On 13 June 2010 11:05, Stephan Ebelt <[1]...@shared-files.de> wrote: > >

Re: [PHP] howto run sql script with php?

2010-06-13 Thread Stephan Ebelt
On Sun, Jun 13, 2010 at 11:29:14AM +0200, Peter Lind wrote: > On 13 June 2010 11:05, Stephan Ebelt wrote: > > Hello, > > > > I am trying to run a .sql script produced with mysql-dump from a php script > > but > > failed to find a rudimentary robust solution ye

[PHP] howto run sql script with php?

2010-06-13 Thread Stephan Ebelt
Hello, I am trying to run a .sql script produced with mysql-dump from a php script but failed to find a rudimentary robust solution yet. mysql_query() can only run one query at a time. Thus its necessary to somehow parse the input file and separate the queries... which is difficult since the synt

Re: [PHP] php selecting multiple stylesheets

2010-02-08 Thread Stephan Ebelt
On Mon, Feb 08, 2010 at 10:22:07AM +, Ashley Sheridan wrote: [...] > > in CSS there is also the concept of 'alternate stylesheets' build in. A > > page can basically specify as many stylesheets as it wants where one is > > default and all others are 'alternate'. The browser will then offer menu

Re: [PHP] php selecting multiple stylesheets

2010-02-08 Thread Stephan Ebelt
On Sun, Feb 07, 2010 at 11:20:18PM -0500, David Mehler wrote: > Hello, > I'm trying to set up a web site. This site has multiple stylesheets, > one default stylesheet that should be used if the other is not chosen. > The second is a high contrast stylesheet and can be selected by user's > who need

Re: [PHP] How do YOU set default function/method params?

2009-10-12 Thread Stephan Ebelt
On Mon, Oct 12, 2009 at 01:44:56PM +0100, David Otton wrote: > 2009/10/12 Stephan Ebelt : > > > as far as I understood/use it: I try to hardcode as many workable defaults > > in > > the vo class as possible (ie. see $subject in the example). Then I create > >

Re: [PHP] How do YOU set default function/method params?

2009-10-12 Thread Stephan Ebelt
On Sun, Oct 11, 2009 at 01:17:00PM -0700, Jim Lucas wrote: > Stephan Ebelt wrote: > > On Mon, Oct 05, 2009 at 05:48:32PM -0700, Jim Lucas wrote: > >> Here is a problem that I have had for years now. I have been trying to > >> come up > >> with the perfect sol

Re: [PHP] How do YOU set default function/method params?

2009-10-11 Thread Stephan Ebelt
On Mon, Oct 05, 2009 at 05:48:32PM -0700, Jim Lucas wrote: > Here is a problem that I have had for years now. I have been trying to come > up > with the perfect solution for this problem. But, I have come down to two > different methods for solving it. > > Here is the problem... [...] > > No