Steve
Take a look at
mysql_data_seek
Mike
Folks
I am running php 5.0.1 on NT.
I have a small test script as shown below
setcookie('cat','large',time()+3600);
setcookie('dog','small',time()+3600);
The outcome of this script is that only the LAST cookie is successfully stored.despite
having a different
name. Is this because the
Jason
Thank you for your response. In the php.ini I have tried:
; For Win32 only.
sendmail_from = [EMAIL PROTECTED]
sendmail_from = '[EMAIL PROTECTED]'
sendmail_from = "[EMAIL PROTECTED]"
This issue has been raised on other php forums, but has not received any responses.
Mike
Folks
Has anyone running php 5.0.0 on NT ran into the MAIL() error
Warning: mail(): "sendmail_from" not set in php.ini or custom "From:" header
missing
I have tried numerous syntax changes to sendmail_from in the PHP.INI as well as
setting headers without
success.
Mike
Have you enabled MYSQL support by removing the semi-colon in front of the extension
DLL in the php.ini
file?
Mike
Folks
I am running php 5.0.0 on Windows 2000
When using php-cgi.exe or php.exe for that matter I get the following error when using
MAIL()
Warning: mail() [function.mail]: "sendmail_from" not set in php.ini or custom "From:"
header missing in e:\http\cgi\mail.php on line 4
When using php-win.
Chris
Have you removed the ";" from the extension DLL in the php.ini file?
;extension=php_ming.dll
;extension=php_mssql.dll
;extension=php_msql.dll
extension=php_mysql.dll < Here
;extension=php_oci8.dll
;extension=php_openssl.dll
;extension=php_oracle.dll
Mike
Michael
session_start() starts and resumes a session placing it in script that is being called
will make
the variable visible.
Mike
Bob
A. Example path
session.save_path = c:\http\cgi\session
Basically a directory under the root of your webserver
B. session_start() must be before any other commands in your script such as HTML.
So Line 1:
Michael
Your right there is a wide selection available and as such you need to select based on
your particular development slant.
PHP and Mysql Web Development ISBN 0-672-32525-X 2nd Edition by Welling & Thomson is a
good general text.
Did you solve your table results printing question?
Mike
Folks
I appreciate the answers received previously in relation to my 4,3 to 5.0 question
regarding $_REQUEST $_POST etc..
Unfortunately I am still no further advanced on solving the problem. Clearly the
value from the form is not being passed to the script in 5.x, but being very new to
PHP an
Folks
I am currently using 4.3.7.
I have a script which accepts three POSTed variables from a basic form. Under 4.3.7
the script
runs fine and the variables are successfully passed to the script.
I am testing 5.0 C3 and receive the following error
PHP Notice: Undefined index: searchtype in
Folks
I am currently using 4.3.7.
I have a script which accepts three POSTed variables from a basic form. Under 4.3.7
the script
runs fine and the variables are successfully passed to the script.
I am testing 5.0 C3 and receive the following error
PHP Notice: Undefined index: searchtype in c
Folks
I am a new to php. I am currently learning about session handling and would
appreciate some assistance with the following:
I am using php 4.3.7 and I am using the default values in the php.ini for
session.use_cookies = 1
session.cache_limiter = nocache
When experimenting with a few simp
14 matches
Mail list logo