[PHP-WIN] What's wrong ;(

2002-11-19 Thread _GeS_
Hi! Can someone change this line so that it works, please ? echo '' . $line["url"] . '';

Re: [PHP-WIN] What's wrong ;(

2002-11-19 Thread Steel
Hi _GeS_, Tuesday, November 19, 2002, 12:45:03 PM, I've got: _> Hi! _> Can someone change this line so that it works, please ? _> echo '' . _> $line["url"] . ''; It seems to me, that You must add slashes before single quote, if You enclose the string within single quotes. Like this: echo ''

[PHP-WIN] Have fun! 3 Days for free! or for one month! every day 24 hours!

2002-11-19 Thread hotstuff
Show this line! http://www.tgpfriendly2.com/members/switzerland/pussyline/ it\'s an switzerline Have fun! Days for free! http://www.tgpfriendly2.com/members/switzerland/pussyline/ -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] PHP variable

2002-11-19 Thread F.Anneveld
Hello, When I use the following code my browser comes with the following error : PHP code: Browser error: Notice: Undefined variable: test in d:\www\trash.ph

[PHP-WIN] Re: PHP variable

2002-11-19 Thread George Nicolae
if (!isset($test)) echo "test does not exist"; -- Best regards, George Nicolae IT Manager ___ PaginiWeb.com - Professional Web Design www.PaginiWeb.com "F.Anneveld" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello, > > When I use the

Re: [PHP-WIN] PHP variable

2002-11-19 Thread Stephen Edmonds
Its just a warning. It tells you that you are using a variable which has no value. Just ignore the notice, or turn down error reporting to exclude notices. All it means is that the variable of $test which you have included in your script HAS NO VALUE. If you were to write something lile $test = "I

RE: [PHP-WIN] parse error

2002-11-19 Thread Charles P. Killmer
I think you are missing } before the else -Original Message- From: Dash McElroy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 19, 2002 12:57 AM To: zeus Cc: Howard, Robert P; phpwin Subject: Re: [PHP-WIN] parse error What line number are you getting the parse error at? It's amazing

Re: [PHP-WIN] parse error

2002-11-19 Thread zeus
i got the error in these line.. ..code before... else($submit) ..after . Maybe its vaery vary for some poeple wit diffrent setup of aplication, or anything to do with my code, i will look up my code again...maybe the erro has gone away ^^; Dash McElroy wrote: What line number are you ge

Re: [PHP-WIN] parse error

2002-11-19 Thread Stephen Edmonds
*sighs* Very simple answer. else CAN NOT have arguments EG if ( x is true ) { do this } elseif ( y is true ) { do this } else { print "Y is not true, X is not true"; } (The code above is not real code, it is an example of how if, elseif and else work) Change your else( $submit ) to else You do

php-windows Digest 19 Nov 2002 14:48:58 -0000 Issue 1448

2002-11-19 Thread php-windows-digest-help
php-windows Digest 19 Nov 2002 14:48:58 - Issue 1448 Topics (messages 17020 through 17035): Re: parse error 17020 by: Howard, Robert P 17024 by: zeus 17025 by: Dash McElroy 17032 by: Charles P. Killmer 17033 by: zeus 17034 by: Stephen Edmonds

Re: [PHP-WIN] parse error

2002-11-19 Thread Cam Dunstan
zeus, I notice you start your code with On Tue, 19 Nov 2002, zeus wrote: > > > Nope! i try that one too, but the parse error thing still exist > > > > > > Howard, Robert P wrote: > > > > >change your else($submit) statement to else > > > -- PHP Windows Mailing List (http://www.php.net/) T

[PHP-WIN] ODBC Connection

2002-11-19 Thread Nichols, Mark A.
I'm not having much luck here. I've created a MS Access database that has a linked table to an Exchange 2000 public folder. When I access this database (MS Access) with PHP, it works fine with the table imported, but when linked to Exchange, PHP returns: Warning: SQL error: [Microsoft][ODBC

[PHP-WIN] Re: ODBC Connection

2002-11-19 Thread Brian McGarvie
I assume on the server you have added a System DNS to the ODBC Manager? "Mark A. Nichols" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I'm not having much luck here. I've created a MS Access database that has a linked table to an Exchange 2000 public folder.

RE: [PHP-WIN] Re: ODBC Connection

2002-11-19 Thread Nichols, Mark A.
Yesand as long as the table is not linked, it works fine. -Original Message- From: Brian McGarvie [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 19, 2002 10:58 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] Re: ODBC Connection I assume on the server you have added a System DNS to t

[PHP-WIN] Re: ODBC Connection

2002-11-19 Thread Nichols, Mark A.
Nope, there's no .ldb file. The file will always be closed, with the exception of the PHP code. -Original Message- From: Brian McGarvie [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 19, 2002 11:10 AM To: Nichols, Mark A. Subject: Re: [PHP-WIN] Re: ODBC Connection ahh... it might b

RE: [PHP-WIN] Re: ODBC Connection

2002-11-19 Thread Matt Kynaston
I might be wrong, but I seem to remember there are some issues with linked tables in Access. Can you access the data in the linked tables from other applications, such as Excel? Matt > -Original Message- > From: Nichols, Mark A. [mailto:[EMAIL PROTECTED]] > Sent: 19 November 2002 16:19

RE: [PHP-WIN] Re: ODBC Connection

2002-11-19 Thread Nichols, Mark A.
Yeh, it works from a linked text file, so file permissions sounds like a good bet. -Original Message- From: Matt Kynaston [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 19, 2002 11:34 AM To: [EMAIL PROTECTED] Subject: RE: [PHP-WIN] Re: ODBC Connection I might be wrong, but I seem to

[PHP-WIN] how to unsubscribe?

2002-11-19 Thread Alvin Tan
hi, i read and followed the instructions for unsubscribing at php.net. no success in doing so. how do i unsubrscibe? vin: __ Do you Yahoo!? Yahoo! Web Hosting - Let the expert host your site http://webhosting.yahoo.com -- PHP Windows Mailing List

[PHP-WIN] Re: dynamic font

2002-11-19 Thread Tim Blackwell
here's what i use.. function Popup(w,h,page,name, scroll) { win = window.open(page, name, 'height=450;width=350') } function getPicture() { scr = window.screen; wid = scr.width if (wid <= 800) { document.write(""); } if (wid > 800) { document.write(""); } } tim "Franco Pozzer" <[EMAIL PROTECT

[PHP-WIN] gettext problem

2002-11-19 Thread deco
I've seen the post in this list about gettext() under windows just a few days ago, but no one seemed to answer it!! So here it goes again: I've installed Apache/PHP on WinXP, have several extensions loaded and working but if i try to load php_gettext.dll i get a "cannot load module" error when st

RE: [PHP-WIN] PHP variable

2002-11-19 Thread Dash McElroy
Do this: The @ turns off error reporting for that function. -Dash -Original Message- From: F.Anneveld [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 7:58 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] PHP variable Hello, When I use the following code my browser comes with

[PHP-WIN] Class error with php

2002-11-19 Thread ecd
Hi, I have to class for two different authentication page. ex. authentication for studend and other for teacher... and the authentication script for student work perfectly but the script for teacher give the following error.. Fatal error: Cannot redeclare class pauth in /proyectoweb/pLoguea.php on

RE: [PHP-WIN] Class error with php

2002-11-19 Thread Rich Gray
if the classes are in include files then you are probably including the file twice. look into using include_once() require_once() instead... -Original Message- From: ecd [mailto:[EMAIL PROTECTED]] Sent: 14 November 2002 07:08 To: [EMAIL PROTECTED] Subject: [PHP-WIN] Class error with php

Re: [PHP-WIN] how to unsubscribe?

2002-11-19 Thread Cam Dunstan
You can`t Alvin - once you`ve joined the list, you`re not allowed to program in any other language except PHP for the rest of your life. Go here - http://www.php.net/unsub.php > - Original Message - > From: "Alvin Tan" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday,