[PHP-DB] Problem with passing variables

2004-01-27 Thread Phil Matt
Hello to all. I am a relative newcomer to PHP. I am trying to pass the value of a variable from a MySQL database from one PHP page to another PHP page. On the first page, I've made the connection to the database, and the query works just fine, displaying the correct values from the $myrow

Re: [PHP-DB] Problem with passing variables

2004-01-27 Thread Viorel Dragomir
- Original Message - From: Phil Matt [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 17:08 Subject: [PHP-DB] Problem with passing variables Hello to all. I am a relative newcomer to PHP. I am trying to pass the value of a variable from a MySQL database from

Re: [PHP-DB] Problem with passing variables

2004-01-27 Thread Ricardo Lopes
] Sent: Tuesday, January 27, 2004 3:08 PM Subject: [PHP-DB] Problem with passing variables Hello to all. I am a relative newcomer to PHP. I am trying to pass the value of a variable from a MySQL database from one PHP page to another PHP page. On the first page, I've made the connection

Re: [PHP-DB] Problem with passing variables

2004-01-27 Thread Phil Matt
On 27 Jan 2004 at 15:56, Ricardo Lopes wrote: If you have something like this: echo 'tda href=email.php?recip=$myrow[0]img src=graphics/mail.gif class=imglink alt=Click to send mail to this person //a/td/tr'; It wont work. Use instead: echo 'tda href=email.php?recip='.$myrow[0].'img

Re: [PHP-DB] Problem with passing variables

2004-01-27 Thread Ricardo Lopes
; [EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 4:27 PM Subject: Re: [PHP-DB] Problem with passing variables On 27 Jan 2004 at 15:56, Ricardo Lopes wrote: If you have something like this: echo 'tda href=email.php?recip=$myrow[0]img src=graphics/mail.gif class=imglink alt=Click to send

[PHP-DB] Problem with passing variables in PHP

2003-03-14 Thread Mazin Albahkali
I'm a beginner in PHP and Database connections I'm accessing a MS Access database using PHP. Everything is working fine. I get the data through an ODBC query and show it on an HTML format form so that I can modify the data and re-post it. I tried to pass the values to a second php file that has

RE: [PHP-DB] Problem with passing variables in PHP

2003-03-14 Thread Hutchins, Richard
] Problem with passing variables in PHP I'm a beginner in PHP and Database connections I'm accessing a MS Access database using PHP. Everything is working fine. I get the data through an ODBC query and show it on an HTML format form so that I can modify the data and re-post it. I tried

RE: [PHP-DB] Problem with passing variables in PHP

2003-03-14 Thread SELPH,JASON (HP-Richardson,ex1)
); } else { print (No data yet\n); } echo /body\n; echo /html\n; ? -Original Message- From: Mazin Albahkali [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2003 10:08 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Problem with passing variables in PHP I'm a beginner