php-general Digest 3 Nov 2007 12:43:52 -0000 Issue 5107

2007-11-03 Thread php-general-digest-help
php-general Digest 3 Nov 2007 12:43:52 - Issue 5107 Topics (messages 264000 through 264009): Re: crop an image 264000 by: Chris Bruce Re: mail and quotes 264001 by: Jim Lucas Re: Function return 264002 by: Dan mysql_fetch_array 264003 by: Eduardo Vizcarra

php-general Digest 4 Nov 2007 04:06:13 -0000 Issue 5108

2007-11-03 Thread php-general-digest-help
php-general Digest 4 Nov 2007 04:06:13 - Issue 5108 Topics (messages 264010 through 264019): Re: Page cannot be displayed error in IE6 264010 by: Nathan Nobbe $_POST superglobal empty, while readfile(php://input) does return data. 264011 by: Mackatack 264012 by:

[PHP] Page cannot be displayed error in IE6

2007-11-03 Thread tanzeem
i have 3 php files pag1.php,page2.php,page3.php I posted to page2.php from page1.php Then again posted from page2.php to page3.php But when i click th back button from page3.php in IE 6.0 it displays a page cannot be displayed error. When i tried the same with Firefox it displayed the page2.php

[PHP] Re: mysql_fetch_array

2007-11-03 Thread M. Sokolewicz
Eduardo Vizcarra wrote: I have a WHILE sentence to retrieve all records from a SELECT query in a database and am using mysql_fetch_array to store them in a matrix, the sentence is like this: while($row=mysql_fetch_array($fotos)) { $fotos_mostrar[] = $row; } $fotos contains all

Re: [PHP] Generating HTML table from MySQL table based on some criteria

2007-11-03 Thread Sudheer Satyanarayana
Wolf wrote: Sudheer, Post the code you are using and we'll better be able to point you in the right direction to get your code working. Thanks Jim Lucas, Wolf and Jay Blanchard for your suggestions. Here is the code I am using [code] print 'table border=1tr'; $result =

Re: [PHP] Page cannot be displayed error in IE6

2007-11-03 Thread Nathan Nobbe
On 11/3/07, tanzeem [EMAIL PROTECTED] wrote: i have 3 php files pag1.php,page2.php,page3.php I posted to page2.php from page1.php Then again posted from page2.php to page3.php But when i click th back button from page3.php in IE 6.0 it displays a page cannot be displayed error. When i

[PHP] $_POST superglobal empty, while readfile(php://input) does return data.

2007-11-03 Thread Mackatack
Hey all! Im trying to submit a very basic form to phpinfo(): form action='?' method='POST' input type='hidden' name='foo' value='bar' / input type='submit' / /form ?php error_reporting(E_ALL); echo 'var_dump: '; var_dump($_POST); echo 'brreadfile:

Re: [PHP] $_POST superglobal empty, while readfile(php://input) does return data.

2007-11-03 Thread Nathan Nobbe
On 11/3/07, Mackatack [EMAIL PROTECTED] wrote: Hey all! Im trying to submit a very basic form to phpinfo(): form action='?' method='POST' input type='hidden' name='foo' value='bar' / input type='submit' / /form ?php error_reporting(E_ALL); echo

[PHP] Rendering problem (IE browser on windows + php on linux host)

2007-11-03 Thread Erick Paquin
Hi All, If someone has seen this before it would greatly help me. I have done a php site at work on my windows server. The site renders perfectly in both Firefox IE. Transferred my site to my home server which is a ubuntu server. Site renders perfect in Firefox but goes wacky in IE. Thought

[PHP] Rendering problem (IE browser on windows + php on linux host)

2007-11-03 Thread Erick Paquin
Hi All, If someone has seen this before it would greatly help me. I have done a php site at work on my windows server. The site renders perfectly in both Firefox IE. Transferred my site to my home server which is a ubuntu server. Site renders perfect in Firefox but goes wacky in IE. Thought

Re: [PHP] $_POST superglobal empty, while readfile(php://input) does return data.

2007-11-03 Thread Mackatack
Nathan Nobbe schreef: On 11/3/07, Mackatack [EMAIL PROTECTED] wrote: Hey all! Im trying to submit a very basic form to phpinfo(): form action='?' method='POST' input type='hidden' name='foo' value='bar' / input type='submit' / /form ?php error_reporting(E_ALL);

Re: [PHP] Generating HTML table from MySQL table based on some criteria

2007-11-03 Thread Jim Lucas
Sudheer Satyanarayana wrote: Wolf wrote: Sudheer, Post the code you are using and we'll better be able to point you in the right direction to get your code working. Thanks Jim Lucas, Wolf and Jay Blanchard for your suggestions. Here is the code I am using [code] print 'table

Re: [PHP] mysql_fetch_array

2007-11-03 Thread Jim Lucas
Eduardo Vizcarra wrote: I have a WHILE sentence to retrieve all records from a SELECT query in a database and am using mysql_fetch_array to store them in a matrix, the sentence is like this: while($row=mysql_fetch_array($fotos)) { $fotos_mostrar[] = $row; } $fotos contains all

Re: [PHP] $_POST superglobal empty, while readfile(php://input) does return data.

2007-11-03 Thread Jim Lucas
Mackatack wrote: Nathan Nobbe schreef: On 11/3/07, Mackatack [EMAIL PROTECTED] wrote: Hey all! Im trying to submit a very basic form to phpinfo(): form action='?' method='POST' input type='hidden' name='foo' value='bar' / input type='submit' / /form ?php

Re: [PHP] mysql_fetch_array

2007-11-03 Thread Eduardo Vizcarra
Hi guys After doing some changes, I believe it is partially working, what I did is the following: while($row=mysql_fetch_array($fotos)) { $fotos_mostrar[] = $row; } $primer_foto = reset($fotos_mostrar[0]); // This is to set the pointer to the first record echo $primer_foto; // This

Re: [PHP] Rendering problem (IE browser on windows + php on linux host)

2007-11-03 Thread David Christopher Zentgraf
What about comparing the pure HTML output of both servers _including headers_, for example with curl? On 3 Nov 2007, at 23:46, Erick Paquin wrote: Hi All, If someone has seen this before it would greatly help me. I have done a php site at work on my windows server. The site renders