2009/8/28 Sanjeev Kumar :
> Hello,
> I need to write PHP-PDO database-driver for a new database.
>
> The clarification I need:
> 1) Should I take the PHP-source on Windows-vista platform and build natively
> the DLL for win.
> Will the VisualStudio compile with all PHP-main src & the extension
>
Hello,
I need to write PHP-PDO database-driver for a new database.
The clarification I need:
1) Should I take the PHP-source on Windows-vista platform and build natively
the DLL for win.
Will the VisualStudio compile with all PHP-main src & the extension
driver to generate the target windows D
6:25 PM
To: Gustav Wiberg; php-windows@lists.php.net
Subject: RE: [PHP-WIN] Newbie - am wondering how to use PHP (?) to get the name
of the user logged on to 'my' https:// site
Gustav,
*Works like a charm! Much appreciated... SO CLEAN AND SIMPLE!*
If you or anyone feels so inclined:
Greg Cocks wrote:
Gustav,
*Works like a charm! Much appreciated... SO CLEAN AND SIMPLE!*
If you or anyone feels so inclined:
$logged = $_SERVER["AUTH_USER"];
print $logged."";
list($logged_on_userdomain,$logged_on_username) = split("\\",$logged);
print $logged_on_username."";
It prin
G COCKS
gcocks|at|stoller.com
-Original Message-
From: Gustav Wiberg [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 20, 2008 12:20 AM
To: Greg Cocks; 'php-windows@lists.php.net'
Subject: RE: [PHP-WIN] Newbie - am wondering how to use PHP (?) to get the name
of the user l
ssage-
From: Gustav Wiberg [mailto:[EMAIL PROTECTED]
Sent: Tuesday, February 19, 2008 11:20 PM
To: 'Greg Cocks'; 'php-windows@lists.php.net'
Subject: RE: [PHP-WIN] Newbie - am wondering how to use PHP (?) to get the
name of the user logged on to 'my' https:// site
Hi!
Cocks [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 20, 2008 5:50 AM
To: php-windows@lists.php.net
Subject: [PHP-WIN] Newbie - am wondering how to use PHP (?) to get the name of
the user logged on to 'my' https:// site
Hello,
I am a (relatively) newbie to PHP - and am wondering how to u
<[EMAIL PROTECTED]>
To:
Sent: Wednesday, February 20, 2008 6:50 AM
Subject: [PHP-WIN] Newbie - am wondering how to use PHP (?) to get the name
of the user logged on to 'my' https:// site
Hello,
I am a (relatively) newbie to PHP - and am wondering how to use PHP (?) to
get the name of
Hello,
I am a (relatively) newbie to PHP - and am wondering how to use PHP (?) to get
the name of the user logged on to 'my' https:// site.
IT set up the site via SSL and using active directory's users (i.e., IIS and
Windoze...) for the logon.
Every staff member can logon with their own Windoz
Dear all,
I'm newbie.
Install php-5.2.5-win32-installer.msi successfully.
Windows XP sp2
I have tested using Apache, PHP file was loaded normally on web-browser.
(no error).
--
But, when I invoked CLI / PHP Interpreter, either directly or by IDE,
it's always raised error message, then was close
Thank you very much, it works.
Andre.
--
On Monday, December 10, 2007 9:41 AM, John Mertic [EMAIL PROTECTED] wrote:
Try not enabling every single extension in the installer, instead enable
only the extensions you need.
You can go into Add/Remove Programs and make these changes as well.
J
Try not enabling every single extension in the installer, instead enable
only the extensions you need.
You can go into Add/Remove Programs and make these changes as well.
John
On Dec 9, 2007 12:29 AM, Andre Junianto <[EMAIL PROTECTED]> wrote:
> Dear all,
>
> I'm newbie.
> Install php-5.2.5-win3
Dear all,
I'm newbie.
Install php-5.2.5-win32-installer.msi successfully.
Windows XP sp2
Web-server is Apache 2.2.6 no-ssl, win32
httpd.conf has 2 lines of additional texts:
PHPIniDir "C:/PHP5/"
LoadModule php5_module "C:/PHP5/php5apache2_2.dll"
--
i wrote a simple PHP web-page: "test.php"
P
one way to troubleshoot your problem is to run the simplest
mail script (w/o From, etc. headers) and invoke it by
commandline or over the web.
if you still can't send emails, try replacing the SMTP domain
name with an IP address. if the problem still persist, check
your connection to the SMTP ser
Hi
I've installed PHP version 5 in my machine running WinME, Personal Web
Server and Internet explorer
6.0.2800.1106, 128 Bit, to have my site on the net, the script I use
(below) in my web page named feedbak.php
http://www.iodatamicro.homeip.net/Contact.html"; ;
$errorurl = "http://www.iodata
Greetings All
I am very new to PHP and have so far been using Dreamweaver MX to
generate the PHP code for me, please do not stone me :)
My current problem is this. Above the DOCTYPE of my document I have the
following lines to connect to the database and retrieve the results:
$colname_side
Hi! I need to read XML output from an URL such as "
http://myfoo.foo.org/cgi-bin/foo.pl?name=12345"; using PHP4 but I am not sure
how to do so and what way would be most efficient, can anybody give me some
ideas?
Thanks!
I can't seem to add php as a server extension with vb and javascript.
Thanks
Frank
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
wrote:
dont mean to be padantic, but 5.7 is not an integer :p
lol
-Original Message-
From: graeme <[EMAIL PROTECTED]>
To: Louis Young <[EMAIL PROTECTED]>
Date: Mon, 17 Jan 2005 13:47:49 +0600
Subject: Re: [PHP-WIN] Newbie question: convert string to int
If you are holding a s
On Mon, 17 Jan 2005, Louis Young wrote:
> What's the function to convert a string to an int.
echo (int) "123abc";
-Rasmus
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
If you are holding a string with a valid number in it e.g. "5.7" then
the conversion is done automatically. See the manual section Language
Reference / Types / Strings / String conversion to numbers. If you are
holding a string with the number in words e.g. "Five" then you'll need
to write your
Hi there
What's the function to convert a string to an int.
Cheers
Louis
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On Wed, 15 Dec 2004 10:23:29 -0800 (PST)
Patrick Roane <[EMAIL PROTECTED]> wrote:
> I am trying some excercises in a book and one of the
> excercises says to:
>
> Assign values to two variables. Use comparison
> operators to test whether the first value is:
>
> 1. the same as the second
>
> 2.
Patrick Roane wrote:
I am trying some excercises in a book and one of the
excercises says to:
Assign values to two variables. Use comparison
operators to test whether the first value is:
1. the same as the second
2. less than the second
3. Print the result of each test to the browser.
My question i
I am trying some excercises in a book and one of the
excercises says to:
Assign values to two variables. Use comparison
operators to test whether the first value is:
1. the same as the second
2. less than the second
3. Print the result of each test to the browser.
My question is, how do I prin
Put your PHP directory into your 'PATH' variable in environment
variables, or try copying the php_mysql.dll file into your windows
directory. Cheers.
Armando
Mike Francis wrote:
Hi,
I am running PHP 5, MySQL 4.1 and Apache 2.0 on an XP Pro Box. I would like
MySQL to serve HTTP pages via PHP.
Af
Hi,
I am running PHP 5, MySQL 4.1 and Apache 2.0 on an XP Pro Box. I would like
MySQL to serve HTTP pages via PHP.
After configuring the setup, on restarting Apache, I receive a 'php_mysql.dll
file cannot be found' error message. However, the webserver starts but, of
course, I cannot access MyS
of your PHP code can help us help you.
Good luck!
-TG
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Friday, August 27, 2004 12:37 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] Newbie Question: PHP/Appache/WINXP/MySQl
>
>
&g
Does the PHP script have to be already running to communicate send a HTTP Post
varibale to it (from a DHTML client browser)? Or can it initiate the HTTP Post fron
the client that activates the PHP script?
I know this must seems simple but I'm having troble receiving these varible from my
clien
Hi chuck,
As far as the "Notices" are concerned you can disable it from php.ini configuration
file.
Regards,
SuDeEp
Chuck <[EMAIL PROTECTED]> wrote:
Hello everyone. Hopefully someone can help me with this.
I was able to install PHP successfully. I tried a sample script and it
worked fine thr
Hello everyone. Hopefully someone can help me with this.
I was able to install PHP successfully. I tried a sample script and it
worked fine through IE. I then tried to create a script that would pass a
value on to another script using the post method. These are called Pass.php
and Pass1.php.
Hi there all,
I have managed to get php to run on Apache server on one pc but I have spent
5 Days now trying to install it on another.
I have tried so many different ways and variable of install it and still
know joy.
Can anyone provide an 'Idiot's Installation Guide' (Not that I wish to
install a
James Thomas (Newbie) wrote:
Have spent the best part of twoo days trying to get PHP 4.3.4 to work on
Apache 1.3.29.
I have followed various different installs.
Basically I have a test page in htdocs called test.php
If i call http://localhost/test.php i get a 404 file not found.
Is this consist
Have spent the best part of twoo days trying to get PHP 4.3.4 to work on
Apache 1.3.29.
I have followed various different installs.
Basically I have a test page in htdocs called test.php
If i call http://localhost/test.php i get a 404 file not found.
Is this consistant of a bad PHP install?
--
Hi, To all :)
Im a newbie to php so pls be patient.
I have developed a web application using php,apache and mysql.
My system in testing and developing them is Win 98 2nd Ed and sometimes WinXP Prof
Edition
I have tested my application using my system and it worked find
When I deployed it
hey guys - I'm sure this is old school problems but without any environment
variables can you tell me if I'm doing something wrong?? thanks.
I've been working on a listing that you can add titles to - so that I can
add a title and an auto link to the file with the new update. Basically, the
main t
I have just installed apache2 (version 2.0.43) which is running OK, and have
tried to integrate an installation of PHP (version 4.2.3) by editing the
httpd.conf file to include the following:
===
#LoadModule expires_module modules/mod
Hello All,
I'm a newbie. I tried searching for an answer to my question, but didn't
find anything. I have the following config:
Win2003 Server w/ IIS 6 installed on C: partition
ISAPI PHP 4.3.4 installed on D: partition (D:\PHP)
MySQL installed on D: partition (D:\MySQL)
Website roots hosted on
I use windows XP
I installed apache it works fine or at least boots in a console windaw and
tests fine
I installed Mysql and it works fine i've been in and setup databases etc
I installed PHP and it tests fine with the php -i giving me all the html
stuff
I know my host name, I know my user nam
Hi,
i m using php version 4.3.2
i want to try on the image function.
i tested with the documentation sample.. but it din work
pls teach me how to do it??. thanx!!
Hello!
I am new to the world of PHP and I have attempted to set up PWS on my
computer. I have Windows 98SE. According to my Windows Components list, PWS
is already installed. However...
http://www.php.net/manual/en/install.iis.php
HKEY_LOCAL_MACHINE /System /CurrentControlSet /Services /W3Svc /Pa
How can I find out (as a string) in what dir my php script is run?
/Gabbah
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I'm new at this. I'm trying to execute the popen function in order to run
a database query on a progress database from php. I'm using
winxp/iis/php4.3.1. When I execute the function I get:
Warning: popen(\progra~1\progress\bin\_progres.exe -pf
\Inetpub\wwwroot\bimeda\prophp\prophp.pf -p
\Inetpub\w
-Original Message-
From: Luis Moreira
To: Svensson, B.A.T. (HKG); ''William Fisher ' '
Cc: [EMAIL PROTECTED]
Sent: 2003-03-11 15:42
Subject: Re: [PHP-WIN] Newbie attempting file open...
What for ?
The option "r" stans for "read".
If what William is doing
ra
To: Svensson, B.A.T. (HKG); ''William Fisher ' '
Cc: [EMAIL PROTECTED]
Sent: 2003-03-11 15:42
Subject: Re: [PHP-WIN] Newbie attempting file open...
What for ?
The option "r" stans for "read".
If what William is doing is try to read a file, and then create
27;William Fisher ' '"
<[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Tuesday, March 11, 2003 2:00 PM
Subject: RE: [PHP-WIN] Newbie attempting file open...
> Luis, read the code once again....
>
> -Original Message-
> From: Luis Moreira
> To:
Luis, read the code once again
-Original Message-
From: Luis Moreira
To: 'William Fisher '
Cc: [EMAIL PROTECTED]
Sent: 2003-03-11 12:03
Subject: Re: [PHP-WIN] Newbie attempting file open...
No need.
It's the other way around, actually.
The option that creates if the th
er '" <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Sent: Tuesday, March 11, 2003 9:15 AM
Subject: RE: [PHP-WIN] Newbie attempting file open...
> You may want to try something like this:
>
> $fp = @fopen(,"r");
>
> if ($fp)
> {
> print"An old file
liam Fisher
To: [EMAIL PROTECTED]
Sent: 2003-03-10 19:54
Subject: [PHP-WIN] Newbie attempting file open...
The Question: It is my understanding that fopen() using the "r" option
will either open the indicated file for read only OR create one if it
doesn't exist. fopen() is giving m
http://www.php.net/manual/en/function.fopen.php
-Original Message-
From: William Fisher
To: [EMAIL PROTECTED]
Sent: 2003-03-10 19:54
Subject: [PHP-WIN] Newbie attempting file open...
The Question: It is my understanding that fopen() using the "r" option
will either open the
The Question: It is my understanding that fopen() using the "r" option will either
open the indicated file for read only OR create one if it doesn't exist. fopen() is
giving me this error when trying to create/open a file.
Warning: fopen(c:/program files/apache group/apache/htdocs/test.txt)
Edward
This is client-side stuff - i.e. JavaScript... PHP is server side.
Rich
> -Original Message-
> From: Edward David [mailto:[EMAIL PROTECTED]
> Sent: 26 February 2003 11:52
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] newbie: hidding form data
>
>
> Hi,
>
Hi,
I am trying to create a form that has checkboxes displayed.
If the box is checked then show below the checkbox input items related to
the parent checkbox.
If the user has not entered his name then do not display the submit button.
Can this be done using PHP 4.3.1 under Windows and IIS.
Pls. h
Hi,
I am trying to create a form that has checkboxes displayed.
If the box is checked then show below the checkbox input items related to
the parent checkbox.
If the user has not entered his name then do not display the submit button.
Can this be done using PHP 4.3.1 under Windows and IIS.
Pls. h
"Edward David" <[EMAIL PROTECTED]> wrote in message news:...
> Hi,
>
> I am trying to create a form that has checkboxes displayed.
> If the box is checked then show below the checkbox input items related to
> the parent checkbox.
> If the user has not entered his name then do not display the submi
Hi,
I am trying to create a form that has checkboxes displayed.
If the box is checked then show below the checkbox input items related to
the parent checkbox.
If the user has not entered his name then do not display the submit button.
Can this be done using PHP 4.3.1 under Windows and IIS.
Pls. h
tensions' directory to <8
character (DOS compliant) name like 'exten' & see if it works?
regds,
-Original Message-
From: Anthony Ritter [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 26, 2003 23:13
To: [EMAIL PROTECTED]
Subject: Re: [PHP-WIN] newbie: installing p
Try "C:\php4\extensions"
i.e. add the dbl quotation marks.
Cheers
Mike
> "Anthony Ritter"
> Rich,
> On MS Win 98 / Apache / PHP 4
>
> If somebody out there using Win can check my php.ini file and advise me
what
> I'm doing wrong.
>
> I have uncommented:
> ..
> extension=php_gd.dll
>
Rich,
On MS Win 98 / Apache / PHP 4
If somebody out there using Win can check my php.ini file and advise me what
I'm doing wrong.
I have uncommented:
..
extension=php_gd.dll
..
and have included:
..
extension_dir = C:\php4\extensions
...
Does it work if you have it like this...
extension_dir = C:/php4/extensions
Rich
> -Original Message-
> From: Anthony Ritter [mailto:[EMAIL PROTECTED]
> Sent: 26 February 2003 16:58
> To: [EMAIL PROTECTED]
> Subject: Re: [PHP-WIN] newbie: installing php_gd
>
>
In my php.ini file, this is what it looks like:
..
extension_dir = C:\php4\extensions\; directory in which the loadable
extensions (modules) reside
extension=php_gd.dll
...
Thank you,
TR
--
PHP Windows Mailing List (http://www.php.net/)
To
Tony
Is the php.ini directive extensions_dir set correctly?
Rich
> Using MS Win 98 / PHP 4 and Apache.
>
> I tried running the following script but got an undefined call to:
>
> ImageCreate()
>
> The following copy is located in my php.ini file...one of which is:
>
> ..
> ;extens
Using MS Win 98 / PHP 4 and Apache.
I tried running the following script but got an undefined call to:
ImageCreate()
The following copy is located in my php.ini file...one of which is:
..
;extension=php_gd.dll
..
I tried uncommenting this line to no avail.
What is
on your php config)
S1.PHP:
s1");
?>
S2.PHP:
-Original Message-
From: Leo G. Divingracia III [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 26, 2003 1:16 AM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] newbie BASIC sessions...
okay, i'm stumped as heck. i cant see
okay, i'm stumped as heck. i cant seem to get it this to work. using
win2k, apache 1.3.x, php4.3.0, registers_globals OFF.
S1.PHP:
//$userid = "blow";
//session_register ('userid');
$_session['userid']="joe";
echo (' s1');
?>
S2.PHP:
if (!session_is_registered ("userid"))
{
echo ("not
I haven't tried it, but can't you call it with the
parent::superclassConstructor()?
HTH,
Mikey
> -Original Message-
> From: Leonardo Javier Belén [mailto:[EMAIL PROTECTED]]
> Sent: 07 February 2003 20:02
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] Newbie: How t
Hi all!
I need some advice. I have a superclass and a class that extends the first. Both have
constructors. How do I initialize the superclass, the extended one, from the
extension. Its not automatically as I supposed it could be. Please! thanks all for
reading...
Sorry for the late reply - the MsSQL worm of late knocked out my email :(
So, your PHP server is offsite. What kind of access to this machine do you
have? Is it simply FTP/HTTP? If so, your options will be limited.
If you don't have access to PHP.INI, you could use the ini_set() command:
ini_set
is there a way to debug on a remote server?
"Dash McElroy" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Alex,
>
> You have to point it at your ISP's SMTP server (assuming this is for
> home). Check your mail program for your SMTP server. Sendmail is a unix
>
Alex,
You have to point it at your ISP's SMTP server (assuming this is for
home). Check your mail program for your SMTP server. Sendmail is a unix
thing, although there are similar programs available for Windows, your
best bet is to use an existing server. Mail from unknown sources is likely
to be
I followed the instructions in a php manual to write a script that will send
emails using mail() function. Only one problem, where is my sendmail
program on windows XP. Or what do i need to configure in the php.ini file?
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit:
Warren,
that was it! I wasn't envoking the form from the 'local host'. Instead I was browsing
the c drive. Now I can see the text w/in the php echo tag.
Thanks again for the help guys-
Patrick
"forget your lust for the rich man's gold. All that you need, is in your soul. Yo
details on how to configure apache on win32...
Rich
-Original Message-
From: paradiddles [mailto:[EMAIL PROTECTED]]
Sent: 24 January 2003 12:31
To: Rich Gray
Cc: [EMAIL PROTECTED]
Subject: RE: [PHP-WIN] newbie form question..
Rich,
thanks for your response. I've tried using the
26 AM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] newbie form question..
I just created a simple html form and a .php file as a test to be sure php
is working right. All I want the form to do is test the echo construct
(which prints the text between the opening and closing php tags) to be sure
m
Rich,
thanks for your response. I've tried using the
January 2003 17:26
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] newbie form question..
I just created a simple html form and a .php file as a test to be sure php
is working right. All I want the form to do is test the echo construct
(which prints the text between the opening and closing php tags) to be
essage-
> From: paradiddles [mailto:[EMAIL PROTECTED]]
> Sent: Friday, January 24, 2003 12:26 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] newbie form question..
>
>
>
> I just created a simple html form and a .php file as a test
> to be sure php is working right.
I just created a simple html form and a .php file as a test to be sure php is working
right. All I want the form to do is test the echo construct (which prints the text
between the opening and closing php tags) to be sure my php interpreter is working
right.
The line in my html form used to i
So what is wrong with this code :
This is page 1 :
$MyFrett = new cFrett;
$_SESSION['cFrett'] = $MyFrett;
this is another page that is trying to use the class instance :
NewNews();
}
?>
thanx
Palli
"Luis Ferro" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED].
Yes, it is, but prior to accessing the stored value you will have to
include the class file, otherwise, php will not know what object that
thing in the session is...
LF
Palli wrote:
Hello
I´m wondering how I keep class instance alive between pages. Is it possible
to store it in Session and w
Hello
I´m wondering how I keep class instance alive between pages. Is it possible
to store it in Session and what is the "right" way to store it globaly?
thanx Palli
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Jim,
thanks for the response. Well- I think your right! I created index.htm and saved it to
my htdocs dir.
I get the "file not found" when I try and bring it up. To answer your question ... I
have:
DocumentRoot "C:/Program Files/Apache Group/Apache/htdocs/"
typed into my httpd.conf file jus
Sorry,
In reference to my last question, I did type correctly and it still
gives me
the "file not found" error.
pr
"you can observe a lot by watching"
~ Yogi Berra
-
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now
Try:
and you should have much better success. phpinfo is a function so you must
include the parens for it to work properly.
Jim
---Original Message---
From: paradiddles
Date: Tuesday, January 07, 2003 10:59:05 AM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] [newbie] What
OTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 07, 2003 6:55 PM
Subject: [PHP-WIN] [newbie] What does this mean?
>
> Hey list,
>
> I'm still having problems loading my where I get the
"HTTP 404 - File not found" error.
>
> When I view the apache e
Hey list,
I'm still having problems loading my where I get the "HTTP 404 - File
not found" error.
When I view the apache error log, I see..
"[Tue Jan 07 11:56:21 2003] [error] [client 127.0.0.1] (2)No such file or directory:
script not found or unable to stat: c:/php-4.3.0-win32/php.exe/php
Robert, Did you add this "php4apache2.dll" to the config file in some way? If so, how
should I add it? thanks- pr
"you can observe a lot by watching"
~ Yogi Berra
-
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now
I just had the same problem the other day. and if I
remember right I used the php4apache2.dll file. It
worked just fine after that. I also did not have to
include the AddModule line.
hope this helps,
Robert Fisher
Axis Solutions, Inc.
__
Do you
ne on any Win2k machine.
-Dash
-Original Message-
From: paradiddles [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 06, 2003 1:49 PM
To: PHP Windows
Subject: [PHP-WIN] newbie ...instal question.
I just installed php 4.3.0-win32, mysql-3.23.54-win and apache_1.3.27 on
Win2000 in hopes of
I just installed php 4.3.0-win32, mysql-3.23.54-win and apache_1.3.27 on Win2000 in
hopes of
getting my feat wet. Well, I've yet to get past the phpinfo.php (test) page w/out
getting the "file not found" error.
After following the instructions from php.net, I thought that I was on target. The
Just follow something along these lines:
- Original Message -
From: "Jerry" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, December 17, 2002 1:57 PM
Subject: [PHP-WIN] Newbie Form Question
> Hi All,
>
> I was playing around creating a
Systems Analyst email: [EMAIL PROTECTED]
Heartland Business Systems
http://www.hbs.net
-Original Message-
From: Jerry [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 17, 2002 1:58 PM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Newbie Form Question
Hi All,
I was
Hi All,
I was playing around creating a simple Form for testing simple subtraction.
Two variables with random numbers that are displayed and a text box for the
user to enter the answer.
random number - random number = "textbox here" "Submit Button Here"
I test to see if the answer the user typed
e-
From: Elvin Certeza [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 12, 2002 1:52 PM
To: php
Subject: [PHP-WIN] newbie question (forms)
I have just recently installed apache and php into my system (win98).
The system test is ok(showing php pages)
Now for the question...
I've create
EMAIL PROTECTED]
Subject: Re: [PHP-WIN] newbie question (forms)
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
scrip
December 12, 2002 1:52 PM
To: php
Subject: [PHP-WIN] newbie question (forms)
I have just recently installed apache and php into my system (win98).
The system test is ok(showing php pages)
Now for the question...
I've created a form.. (rather cut and paste a form). This form works onlin
*** This is a quote from a mail I posted earlier. it seems a lot of people
ask the same question :-) ***
- Original Message -
From: "Elvin Certeza" <[EMAIL PROTECTED]>
To: "php" <[EMAIL PROTECTED]>
Sent: Thursday, December 12, 2002 9:52 PM
Subject: [PHP-WIN] new
I have just recently installed apache and php into my system (win98).
The system test is ok(showing php pages)
Now for the question...
I've created a form.. (rather cut and paste a form). This form works online
I have tested it myself.. but locally it gives me an error..
When my php page lo
ewsgroup.
>
> -Dash
>
> -Original Message-
> From: Constantin Baciu [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, September 12, 2002 1:48 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [PHP-WIN] Newbie to the news!
>
>
> All I want to do is connect to the list
-Dash
-Original Message-
From: Constantin Baciu [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 12, 2002 1:48 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-WIN] Newbie to the news!
All I want to do is connect to the lists with Outlook Express...
I want to be able to read the posts and to po
1 - 100 of 167 matches
Mail list logo