Re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-04 Thread Lester Caine
[EMAIL PROTECTED] wrote: That solved it. Awesome. Thanks you so much. Brian - A 'phpinfo()' test page is almost essential. When you make changes to the php.ini file you can check they have taken ;) -- Lester Caine - G8HFL - L.S.Caine Electronic Services -

Re: [PHP-DB] How to stop the server timing out

2006-10-04 Thread Szymon Fornal
hmm, you can edit your php.ini there is max_execution_time or in header of your php file put *ini_set* ( max_execution_time, string newvalue ) Bastien Koert napisaƂ(a): You need to just start adding echo statements to the code to see where the hang up is Bastien From: David Skyers [EMAIL

Re: [PHP-DB] How to stop the server timing out

2006-10-04 Thread OKi98
Hi, Is there anything I can do, to get the page to run completely sure, contact the hosting company to prolong the maximum execution time on that script or speed up how the page works maybe, but I dont see the source code The page does a select from a table and inserts the data into

[PHP-DB] problem with header()

2006-10-04 Thread j . kuehne
Hi I can not submit any header() information in the following context. What is wrong within the code? ?php require_once includes/db.inc; require_once HTML/Template/ITX.php; if (!($connection = @ mysql_connect($hostname, $username, $password))) die(Could not connect to database);

Re: [PHP-DB] problem with header()

2006-10-04 Thread Dimiter Ivanov
On 10/4/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi I can not submit any header() information in the following context. What is wrong within the code? ?php require_once includes/db.inc; require_once HTML/Template/ITX.php; if (!($connection = @ mysql_connect($hostname, $username,

[PHP-DB] problem with header()

2006-10-04 Thread j . kuehne
Hello thanks for your helping. But several things I already have checked. How I could force my code to make header() call effective. On 10/4/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi I can not submit any header() information in the following context. What is wrong within the

RE: [PHP-DB] How to stop the server timing out

2006-10-04 Thread David Skyers
Hi, Thanks, the echos causes the page to responds after each insert, so the server no longer times out. David -Original Message- From: Bastien Koert [mailto:[EMAIL PROTECTED] Sent: 04 October 2006 03:24 To: David Skyers; php-db@lists.php.net Subject: RE: [PHP-DB] How to stop the

[PHP-DB] textarea value assignment

2006-10-04 Thread j . kuehne
Hello how I could assign a textarea with a variable value? Although I tried to achieve an allocation like a normal input, but it does not work so I have no success with textarea. The code looks like following fragment. $problem_val = mysqlclean($_SESSION, problem_eb, 500, $connection);

[PHP-DB] PHP - MySQL webhosting

2006-10-04 Thread Bradley Stahl
If anyone is interested in some VERY good webhosting that has support for PHP and MySQL, please take a look at the following link: http://www.sturdyhosting.com/idevaffiliate/idevaffiliate.php?id=100 They offer domain names for $8.95 and also webhositng solutions for as low as $2.95 per month.

Re: [PHP-DB] textarea value assignment

2006-10-04 Thread Brad Bonkoski
[EMAIL PROTECTED] wrote: Hello how I could assign a textarea with a variable value? Although I tried to achieve an allocation like a normal input, but it does not work so I have no success with textarea. The code looks like following fragment. $problem_val = mysqlclean($_SESSION,

[PHP-DB] PHP - MySQL webhosting

2006-10-04 Thread Bradley Stahl
If anyone is interested in some VERY good webhosting that has support for PHP and MySQL, please take a look at the following link: http://www.sturdyhosting.com/idevaffiliate/idevaffiliate.php?id=100 They offer domain names for $8.95 and also webhositng solutions for as low as $2.95 per month.

Re: [PHP-DB] textarea value assignment

2006-10-04 Thread Stut
Brad Bonkoski wrote: [EMAIL PROTECTED] wrote: Hello how I could assign a textarea with a variable value? Although I tried to achieve an allocation like a normal input, but it does not work so I have no success with textarea. The code looks like following fragment. $problem_val =

[PHP-DB] textarea value assignment

2006-10-04 Thread j . kuehne
Hi I will try it. Many thanks in any case. [EMAIL PROTECTED] wrote: Hello how I could assign a textarea with a variable value? Although I tried to achieve an allocation like a normal input, but it does not work so I have no success with textarea. The code looks like

Re: [PHP-DB] textarea value assignment

2006-10-04 Thread Bradley Stahl
If anyone is interested in some VERY good webhosting that has support for PHP and MySQL, please take a look at the following link: http://www.sturdyhosting.com/idevaffiliate/idevaffiliate.php?id=100 They offer domain names for $8.95 and also webhositng solutions for as low as $2.95 per month.

[PHP-DB] problem with header()

2006-10-04 Thread j . kuehne
Good morning Bastien mosts likely you have html output in the page somewhere, perhaps in the includes or it could be a blank space in one of the files that is above and outside the php tags many thanks, there was a prior header() call in one of my include files which prevent the second