On Wed, Aug 08, 2001 at 09:14:56AM -0700, Bjorn Van Simaeys wrote:
> Hey Renze,
>
>
> Don't you think that checking too much is useless and
> takes a bite out of your performance too? Don't waste
> your time.
>
>
> Greetz,
> Bjorn Van Simaeys
> www.bvsenterprises.com
That's right... Checking
On Thursday 09 August 2001 07:47, karthik wrote:
> Hi,
>
> I am running PHP 4.06 on Windows 2000 with IIS 5. I am running PHP in CGI
> mode.
>
> I seem to be getting "CGI Error
> The specified CGI application misbehaved by not returning a complete set of
> HTTP headers. The headers it did return a
Hi,
I am using post to pass information to a php script ie;-
www/mypage.phtml?var=3
on the page that is being passed the data i am testing for the occurence of
var with;-
if($var)...
this is generating a warning if var is not passed to the page, as I do not
always want to pass the dat
Hi,
In install.txt there seems to be settings on how to install under various
web servers.
There is nothing on CGI errors etc.
And i have followed the procedure which was given in install.txt for
configuring PHP.
Still this problem occurs.
Help,
Karthik.
- Original Message -
From: "P
On Thursday 09 August 2001 09:46, karthik wrote:
> Hi,
>
> In install.txt there seems to be settings on how to install under various
> web servers.
Well what about this bit:
You have installed PHP, but when try to access a php script file via your
browser, you get the error:
cgi error:
Hi! dear friends,
how to create directory through php on linux
platform??
and how to give permissions to the
directory.
Thanks in advance.
Regards
-Balaji
The Information contained and transmitted by this E-MAIL is proprietary to
Wipro Limited and is intended for use only by the i
[EMAIL PROTECTED] (L Melville) wrote:
> Hi,
>
> I am using post to pass information to a php script ie;-
>
> www/mypage.phtml?var=3
>
> on the page that is being passed the data i am testing for the occurence of
> var with;-
>
> if($var)...
>
> this is generating a warning if var i
> Balaji Ankem wrote:
>
> Hi! dear friends,
>how to create directory through php on linux platform??
http://www.php.net/manual/en/function.mkdir.php
>
>and how to give permissions to the directory.
>
http://www.php.net/manual/en/function.chmod.php
--
Pavel a.k.a. Papi
--
PHP Gener
Is anyone else having fun and games with IE 5.0 and caching?
I have the no-cache code (below) before anything else in my index file.
Following that an include file is pulled in that has a form with a text
input field that echos the date and time.
Whenever I refresh the page the time does not up
Hi !
I ve got a problem with the mail function :
My http server (Apache) is running as user "web" and php is compiled as a
module.
When I send a mail with the mail function and, for example, the recipient
does not exists, the return message is sent to [EMAIL PROTECTED]
I would like the err
the following problem:
I want to read out, if the firstname is a boy's name or a girl's name...
therefore I've written this code: (which allready works)
-- ---
$fp=fopen('http://www.vornamenlexikon.de/main/suchen.asp?kriterium=search&B1
=Suchen&action=searchnow
On Thu, 9 Aug 2001, Karl Phillipson wrote:
> Is anyone else having fun and games with IE 5.0 and caching?
>
> I have the no-cache code (below) before anything else in my index file.
> Following that an include file is pulled in that has a form with a text
> input field that echos the date and t
Try this
works for me - try loading www.shanghaiguide.com/main/index.php3 - should
do time, and display a different image every time.
cheers,
lawrence.
-Original Message-
From: Karl Phillipson [mailto:[EMAIL PROTECTED]]
Sent: August 9, 2001 5:21 PM
To: '[EMAIL PROTECTED]'
Subjec
Not sure I fully understand you. I'm assuming that you mean that you prefix
each member method with a particular string that relates to the class.
By doing this you lose a key strength of OOP. Namely the ability to write
polymorphic code.
In effect, you would not be able to do the following:
cla
Hmmm, I substituted the date("F jS Y G:m A") function for a time() function
and this works fine, on refresh the updated timestamp is visible.
(btw system is apache 1.20 running on Hed Rat 7.1 - php 4.05)
Can anyone explain why the time() function refreshes and returns the correct
value but the
I have tested again what I said yesterday and found that if I have
problems in PHP support in Apache then all my information
(username and password) are seing simly on the screen, so it's not
about dead SQL server but PHP.
However, I went through all docs that I have on this topic and found
i tend to get this error when the page being called doesn't exist.
check the link and the file name
Steve
"Phil Driscoll" <[EMAIL PROTECTED]> wrote in message
01080909463405.04245@linux">news:01080909463405.04245@linux...
> On Thursday 09 August 2001 09:46, karthik wrote:
> > Hi,
> >
> > In ins
Hi!
When i'm trying to run this script:
I get this error:
Warning: Rename failed (Permission denied) in
C:\Inetpub\WEBS\mysko\uploads\rename.php on line 4
The directoy has change permissions. What am i donig wrong...?
/martin
--
PHP General Mailing List (http://www.php.net/)
To unsubscrib
> but no luck.
Take a look at one of the tutorials.. Many can be found on the links page
you can click to on www.php.net
This will help you to find the info you need and also answer the next
question you're going to ask.
Bye,
B.
--
PHP General Mailing List (http://www.php.net/)
To unsu
Hello,
I'm trying to install PHP 4.0.5 in a Solaris machine with web server Netscape
Enterprise Server.
I have problems with the file libphp4.so
conf_init: Error running init function load-modules: dlopen of
/opt/netscape/iplanet4/bin/libphp4.so failed (ld.so.1: ns-httpd: fatal: rel
Hello Tarrant,
Thursday, August 09, 2001, 1:14:25 PM, you wrote:
TC> When saying; mysql_query("SELECT username FROM users",$db); it only show's
TC> one of the first users in the column "users".
TC> Could someone please tell me how to make it print out the complete column
TC> list of usernames. I
if(!($result=mysql_db_query("SELECT username FROM users" $db)))
{
print "Error getting rows";
exit();
}
while($row=mysql_fetch_array($result))
{
$username=$row["username"];
print "$username";
}
mysql_free_result($res
Hi All
I store files on MYSQL server but when I try to pull them out ( show them on
screen or download ) with IE it download them twice before showing them up
:(
I played with the headers (adding, removing) with no success.
by the way in Netscape its work fine.
here is the last code tried:
-
Hi
Where in php.ini do you set it so that .html files will also run php?
Sincerely
berber
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL P
look at the apache conf file and not in php.ini file
- Original Message -
From: "Boaz Yahav" <[EMAIL PROTECTED]>
To: "PHP General (E-mail)" <[EMAIL PROTECTED]>
Sent: Thursday, August 09, 2001 4:00 PM
Subject: [PHP] PHP ext
Hi
Where in php.ini do you set it so that .html files will al
Sorry I thought that this is a bug.
Thanks.
__
Your favorite stores, helpful shopping tools and great gift ideas. Experience the
convenience of buying online with Shop@Netscape! http://shopnow.netscape.com/
Get your own FREE, per
On Wednesday 08 August 2001 00:00, Sean Cook wrote:
> I am trying to figure out a way to run an application such that
> regardless of the url I achieve the same results. This is similar to
> the way apache/mod_perl works ... example
>
>
> SetHandler perl-script
> PerlHandler someh
On Wednesday 08 August 2001 01:37, CGI GUY wrote:
> How does PHP compensate for an apparent lack of
> traditional subroutines (as with Perl, etc.)? It seems
> like I'm going to have to script separate pages for
> ea. set of processes in my search (i.e., print FORM,
> print results for SEARCH,
> pr
>Where in php.ini do you set it so that .html files will also run php?
You don't.
httpd.conf is the place to look. It says something about what Apache has to
do with .php and .php3 .. so.. add .html
Bye,
B.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL
On Wednesday 08 August 2001 18:08, [EMAIL PROTECTED] wrote:
> I'm having a problem using require with a url. What I'm trying to do is
> have a php script on a server that calls a file on another server using
> require. The file that is called on the other server contains php
> functions that the
At 09.08.2001 13:17, B. van Ouwerkerk wrote:
>>Where in php.ini do you set it so that .html files will also run php?
>
>You don't.
>
>httpd.conf is the place to look. It says something about what Apache has
>to do with .php and .php3 .. so.. add .html
>
>Bye,
AddType application/x-httpd-php .p
As for snap two, try echoing the filename you're trying to fopen:
do:
$fn = "http://babynames.pregnancy.yahoo.com/bnfname?n=$name";
echo "$fn\n";
$fp = fopen($fn, "r");
Weird...maybe this yahoo service was doing at that moment?
"Tribun" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">new
Hi All,
Also a good advice is to restrict the access to the files where you
include your login/pass. Give permissions to only the PHP user, I mean
the user that runs the php process (in unix/linux make a ps axu and look
at the user column). Then change the file permissions to just that user
(unix
Hi all,
what is the best software to make banner ads? Are there any free or
evaluation trail available? I want to make the banner ads on my PHP page.
Thank you.
Calvin Chua
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-
Wee Chua wrote:
>
> Hi all,
> what is the best software to make banner ads? Are there any free or
> evaluation trail available? I want to make the banner ads on my PHP page.
> Thank you.
>
> Calvin Chua
Maybe this helps you a little:
http://freshmeat.net/search/?site=Freshmeat&q=php+banner§ion
I know this would probably be better placed on the mySQL mailing list, but
alas I do not subscribe to it and am hesitant to do so to ask one question.
Enough PHP users use mySQL that perhaps the answer could be found here.
In searching through a text field in a mySQL database, I would like to
s
How exactly is the username/password from the mysql_connect() call shown
to the browser?
I normally just get a PHP error when the db connection can't be made.
No code is shown, just a line number. If, in your case, PHP dumps the
source code to the browser window when the db connection won't wor
Hi,
Have been trying to open a socket with PHP on Windows98 and get a call
to undefined function error for the socket function. Does the Win32
version of PHP come with socket support.
BTW: Using PHP 4.10
Thanks in advance.
M
--
PHP General Mailing List (http://www.php.net/)
To unsubscrib
If you get the "call to undefined function" error, I'd say that it doesn't
have the socket functions built in. I'm not positive, that'd be my guess
though.
Tyler Longren
Captain Jack Communications
[EMAIL PROTECTED]
www.captainjack.com
On Thu, 09 Aug 2001 15:19:40 +0100
"Michael Quinn" <[EMAI
Bjorn and Julio, you've got it right.
I've now a contract with Volvo Aero Services for web design and multivalue
database support. Ever since Volvo bought AGES, it's been a huge
technological step backwards from Linux and PHP to M$ and ASP. The big
companies DON'T CARE that M$ puts out a secu
Hi guys,
I have a problem that's killin' me. As I'm not very good at Linux I don't know how to
set the properties of the folder pics to be able to use the copy function. (If I'm
right and the problem is not some else) Please help. Here's the code:
if (file_exists($userfile)) {
copy("$userf
You need to make sure that what ever user the webserver/php runs under has
permissions to read from the source folder/file and write permission for the
destination folder/file.
Common users for apache/php are "nobody" or "apache"
regards
Jon
Jon Farmer
Systems Programmer
Entanet International
Testing!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
look in httpd.conf to get the user name,
then chown the directory to that user
ex.
chown apache:apache ./dir/
chmod 755 ./dir/
and make sure that you change permissions to all
files that you write into the directory to be
read-write only (not exec
Jeff Lewis wrote:
>
> I still rarely ever see PHP mentioned in job listings and the like. Especially here
>in Canada I find it very hard to find any kinds of contacts for companies using PHP.
>My previous employer that I was with for 3+ years insisted on Micro$oft products and
>wanted to go
Hi,
I use a few forms on my websites, one of them is to log in onto the site.
These sites all work well in MSIE and Netscape 3 and 4.7 BUT in Netscap 6
(6.0, 6.01 and 6.1) there is a strange effect: The result page starts
loading but the loading is broken before the end of the page. The php
s
Hi again,
As a new PHP convert, I ran into this same problem (below) yesterday while
designing a form. ASP programmers (if they're THINKING) will use subs to
keep "if" blocks tidy. In ASP, I'd use something like:
If Request.ServerVariables( "REQUEST_METHOD" ) = "GET" Then
DisplayForm
E
I'm trying to call a page write in PHP for windows 98 with PWS and I received the
following error:
Please help me.
Thanks.
ID: 12670
Updated by: cynic
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Bogus
Bug Type: PWS related
Operating System: Win98
PHP Version: 4.0.6
New Comment:
a
> Just one point Java is actually open source, because you can get the
> source code for the JVM. It is not GPL what means that if you want to
> make money with it you have to pay for it (but after all Sun is a
> bussiness, and bussiness are for making money).
Access to source code has very littl
Rasmus Lerdorf wrote:
>
> > Just one point Java is actually open source, because you can get the
> > source code for the JVM. It is not GPL what means that if you want to
> > make money with it you have to pay for it (but after all Sun is a
> > bussiness, and bussiness are for making money).
>
>
Hi Martin,
Question: who actually OWNS the document? Does it have your logname and
group? If you're trying to do a rename from the server, remember that the
server generally runs as "apache" or "nobody"... and to coin a phrase,
"nobody" owns nothing.
If you're trying to manipulate files in yo
Hey, there...
I ran into this yesterday along with learning a heap more PHP. Adding a
"Reply-To: [EMAIL PROTECTED]" header seemed to work fine.
Hope this helps,
Bill
-Original Message-
From: Jean-Arthur Silve [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 09, 2001 5:23 AM
To: [EMAIL
Hello,
I set up a user-auth script that checks $PHP_AUTH_USER & $PHP_AUTH_PW
against a db with login/pwd information, but on the server my site is hosted
this doens't work because PHP runns as cgi.
How do I do this with PHP running as a cgi?
Thanks in advance.
Regards
Bart
--
PHP General M
can anyone tell me why this doesn't work??
assuming I have these three files:
settings.php is:
page.php is:
function.php is:
for some reason the $bar in function foo() doesn't have a value... :(
calling page.php only returns the $bar from page.php
thanks in advance!
jaxon
--
PHP Gener
oh, this still happens when I fix the missing () in the foo declaration :)
cheers,
jaxon
> -Original Message-
> From: Jaxon [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, August 09, 2001 12:34 PM
> To: [EMAIL PROTECTED]
> Subject: help, weird include problem with functions
>
>
>
> can a
Hey Chris
If the text field only contains dates, I'd suggest converting it to a DATE type
the use DATE_FORMAT in your SELECT statement to return the format needed. This also
lets MySQL sort it for you,
ie:
SELECT DATE_FORMAT(date, '%b %e %Y') FROM your_table ORDER DESC BY date
Right o
You need to include settings.php in functions.php.
- Original Message -
From: "Jaxon" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, August 09, 2001 12:48 PM
Subject: [PHP] RE: help, weird include problem with functions
> oh, this still happens when I fix the missing () in
I am making a site where people get 3 free months from when they register.
In a table I have 2 different fields; 1 for when they register, and another I
want exactly 3 months later. I have this code:
On Thu, Aug 09, 2001 at 12:48:38PM -0400, Jaxon wrote:
> oh, this still happens when I fix the missing () in the foo declaration :)
>
> cheers,
> jaxon
>
Works fine, no problems at all!
Are you sure function.php is included at all? Because if the only
problem would be $bar, the output would a
Oops..(Hit send prematurely.)
$currentmonth = date("m");
$currentday = date("d");
$year = date("Y");
$newmonth = $currentmonth + 3;
if ($newmonth > 12){
$newmonth = $newmonth % 12;
$year = $currentyear + 1;
}
$3months = date("Y-m-d",mktime(0,0,0,$newmonth,$currentday,$year))
On Thu, Aug 09, 2001 at 01:05:14PM -0400, [EMAIL PROTECTED] wrote:
> I am making a site where people get 3 free months from when they register.
> In a table I have 2 different fields; 1 for when they register, and another I
> want exactly 3 months later. I have this code:
>
I don't think tha
Hello,
I'm running RedHat 7.1 and have installed PHP 4 from the RedHat
installation disk. It is a normal RPM file for the PHP install (prebuilt).
PHP does not seem to work. Looking at the INSTALL file as if I were to
build PHP from scratch it mentions some shared libraries that are no
<[EMAIL PROTECTED]> wrote:
> As a new PHP convert, I ran into this same problem (below) yesterday while
> designing a form. ASP programmers (if they're THINKING) will use subs to
> keep "if" blocks tidy. In ASP, I'd use something like:
>
> If Request.ServerVariables( "REQUEST_METHOD" ) = "GET" T
hmm...yes, it does work, I jumped the gun on the simple example, cuz I
thought it was an echo problem..
my un-simplified example has an opendir() in function foo() file.
function.php is:
so the simple example does indeed work, but the opendir() is choking trying
to deal with the variable.
hmm
Hello,
I'm running RedHat 7.1 and have installed PHP 4 from the RedHat
installation disk. It is a normal RPM file for the PHP install (prebuilt).
PHP does not seem to work. Looking at the INSTALL file as if I were to
build PHP from scratch it mentions some shared libraries that are no
On Thu, Aug 09, 2001 at 01:08:33PM -0400, [EMAIL PROTECTED] wrote:
> Oops..(Hit send prematurely.)
>
> $currentmonth = date("m");
> $currentday = date("d");
> $year = date("Y");
> $newmonth = $currentmonth + 3;
> if ($newmonth > 12){
> $newmonth = $newmonth % 12;
> $year = $curr
On 09 Aug 2001 12:31:18 -0500, Scott Pathel wrote:
> Hello,
>
> I'm running RedHat 7.1 and have installed PHP 4 from the
RedHat
> installation disk. It is a normal RPM file for the PHP install
(prebuilt).
> PHP does not seem to work. Looking at the INSTALL file as if I were to
> build
Hey, Scott:
I'm running RH7.1 myself. PHP sort-of "came out the box" when I installed
the default server installation, as an Apache module. All's I had to do was
make a PHP page (a timid "echo 'hello';"), throw it in the right directory,
and *poof* it served.
Astonished me, too.
Seems as if w
On Thu, Aug 09, 2001 at 01:15:41PM -0400, Jaxon wrote:
> hmm...yes, it does work, I jumped the gun on the simple example, cuz I
> thought it was an echo problem..
> my un-simplified example has an opendir() in function foo() file.
>
>
> function.php is:
>function foo{
> global $bar
yes, I'm sure the directory exists :)
here is the actual code, I suppose this would have been more helpful to
start:
http://localhost/modules in a
settings file
echo "$modroot from included"; //this echos "http://localhost/modules";
properly
//the below throws the error, OpenDir: No such file
I'm tired...
I finished English version of my site and wanted to start Russian
part but realized that MySQL server returnes all data in koi-8r
charset which is not very comfortable for some of the users,
specially I know that A LOT of russians using Opera brawser older
versions of which do no
I know CVS exists, and, I know there are some projects out there to make
use of CVS/RCS using a web front end (I helped write one). I am however
curious if anyone knows of any projects out there to create an ISO 900x
angled document control systems out there?
Most of the commercial software pac
Yes I had wondered if someone was going to make that claim :)
So far I haven't seen much in perl or Java that I CAN'T do in PHP. The user
community is much more helpful, the PHP manual online is IMO simply amazing.
I love that guide :)
I just rarely see any jobs posted for PHP. Mostly ASP and
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
a big reason i use PHP as much as i do is becuase of
the excellent documentation and ease of finding it all...
> -Original Message-
> From: Jeff Lewis [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, August 09, 2001 1:02 PM
> To: Rasmus Lerdor
On Thu, 9 Aug 2001, Jeff Lewis wrote:
> Yes I had wondered if someone was going to make that claim :)
>
> So far I haven't seen much in perl or Java that I CAN'T do in PHP. The user
> community is much more helpful, the PHP manual online is IMO simply amazing.
> I love that guide :)
>
> I just r
Agreed! Kudos to the persons responsible for creating the php manual. It is
imho, the most concise and accessible documentation of any technology that i
have used on the net. The technology is astounding as well! I know i am
rapidly becoming an evangelist :)
q.
Subject: RE: [PHP] PHP in corpo
Bzzzt...Wrong! But thank you for playing. If you read the FAQ on
Sun's "Open Source" website not only do they admit Java is not
open source, but they sort of tip toe around whether or not it ever
will be.
http://www.sunsource.net/faq.html#Java
Sheridan Saint-Michel
Website Administrator
FoxJet
Hi friend!
Want to be a bulk email expert? Here is the best bulk mailer, period.
Ultra fast!
Super reliable!
No software to download!
http://www.u-bulk.com
***Disclaimer
You are receiving email as [EMAIL PROTECTED]
This email is a one time mailing. ADV ap
On Thu, 09 Aug 2001 14:30:43 -0500, Sheridan Saint-Michel
([EMAIL PROTECTED]) wrote:
>Bzzzt...Wrong! But thank you for playing. If you read the FAQ on
>Sun's "Open Source" website not only do they admit Java is not
>open source, but they sort of tip toe around whether or not it ever
>will be.
w
Hi folks,
I have a site on my laptop, works fine.
When I tar it up and move to my ISP for a production environment, certain things stop
working.
The two environments are pretty much the same, except my laptop is php_mod and the ISP
is a cgi.
Basic pages still work fine, but I'm using URL par
In my experience Scandinavia (well nordic really, can't forget finland) and
germany (and a few other european countries...notably not england) are much
more open to open source (no pun intended) to open source and the like..
their concerns are sensible ones. Something in the mentality. northern
am
thanks, but it's not a csoft issue - it's webaxxs
i guess i'm trying to figure out if this could be a php configuration issue, and how i
would track it down...
cheers,
s
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mai
Hey Youri,
Could you let us know what file extension you use for
you php files? And give us the exact code/error
message you get on screen. Of course you can hide your
username/pass with x.
Thanks
Bjorn Van Simaeys
www.bvsenterprises.com
--- Matthew Loff <[EMAIL PROTECTED]> wrote:
>
>
Ohh, I don't get any error messages, BUT if I have my php
functions not working properly I can see the sourse of php code on
my browser. If I use extention .inc for including my connection-
variables file then browser attempts to download this file which is
not better then first. I searched the n
Okay...some valid info!
the error logs are showing:
[Thu Aug 9 15:23:20 2001] [error] [client my_ip_address] Premature end of
script headers: /www/docued/cgi-bin/php
any ideas, oh gurus?
cheers,
a
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Thur
mail½ß¼îÀÇ º£³Ê ±¤°í ¾î¶°½ÅÁö¿ä?
¾È³çÇϼ¼¿ä. ½ß¼î Á¦ÈÞÆÄÆ®³Ê ´ã´çÀÚÀÔ´Ï´Ù.
ǫǫ Âî´Â ´õÀ§¿¡µµ ¾ðÁ¦³ª ½ß¼îÀÇ È«º¸¸¦ À§ÇØ ¾Ö½áÁּż °¨»çµå¸³´Ï´Ù.
8¿ùºÎÅÍ ½ß¼îÀÇ ÆÄÆ®³Ê ¼öÀͱÝÀÌ ÀλóµÇ¾î ÆÄÆ®³Ê´Ô²² µå¸®´Â ±Ý¾×ÀÌ ´õ ¸¹¾ÆÁ³½À´Ï´Ù.
Áö±Ý ¹Ù·Î ½ß¼îÀÇ »ç
I am talking about the JDK... or the compiler and the JVM.
I don't think the language itself can be copyrighted as it falls under a
"method of operation" which (in the US at least) is not copyrightable
(Correct me if I am wrong. IANAL)
Since you mentioned Kaffe I visited their homepage www.kaff
I believe that there is a better way to do what I am trying to
do here. I have an online form to enter interviews into a MySQL db
right now it is like this
etc... each going to their own spot in the table.
with this
$query = "insert into
interviews(id,interviewed,interviewer,q1,a1,q2,a2,q
hi,
i have some problems with "exec". i am using win2000, apache and latest php
version. always 'unable to fork' . what´s the problem?
thanks for help, arne
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PRO
Hello php-general,
I made a system in php and mysql for a corp.
This system controls the payment of the customers, so i need to print
the quote of each payment. Is there anyway to do this with php?
I mean.. Printing quotes from a web browser, besides that i also need
something to print from thi
I am digitalizing a companies Application in an online system. The problem is that
companies they deal with require the app to be signed. Obviously an online application
cannot be signed conventionally. Does anyone know of a way or a work-around to
accomplish this?
> the "frozen local.inc" aberration was a result of a strange
"include_file="
> path something like this - ".:/usr/local/lib/php" - evidently PHPLIB won't
> traverse to the second path iteration? Anyone know anything about this?
Try "./:/usr/local/lib/php"
. alone may not be enough for some reaso
> I am curious about how to best define the size of fields in mysql. Is
> there some size that are better used than others?
>
> For example without thinking about it to much I would tend to size
> fields in multiples of 10 - 20, 50, 100, 200 etc... Is this the best
> answer?
If there are better s
Like, if you're really the only user, just throw Apache/MySQL/PHP on your
desktop/laptop and develop there...
You'll still need to find a host with the features you need, but now you
have three months to do the research.
--
WARNING [EMAIL PROTECTED] address is an endangered species -- Use
[EMAIL
> I am looping through a few thousand records and would like to display
> the results every loop. Eg:
>
> while($row = mysql_fetch_object($sql)):
> echo "Hi $row->name";
> flush();
> endwhile;
>
> A simple example - but you see what I am trying to achieve. Perhaps a
> more realistic example is dis
> $message = $buffer;
> echo $message; http://l-i-e.com/artists.htm
Volunteer a little time: http://chatmusic.com/volunteer.htm
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To co
Get rid of the Content-type for now, and see if you have any error
messages...
You'll need Content-type to make it work, but if you have a PHP error
message on any of the subsequent lines, they don't make a valid image.
You could also re-direct errors to the Apache log (or other) and view that
a
Running a spell-checker and highlighting problems with a web-interface for
the original author to decide what to do is probably the ideal middle
ground...
It's not a trivial HTML/browser interface to write, but it shouldn't kill
you to do it.
If you don't have pspell/aspell/ispell/uspell/weallsp
> writing to a flat file I am getting 500 error with Apache. I know the path
> is correct and when I delete the file.txt and try to write to it. A new
file
> is created but no writing. What does Premature end of script headers:
mean?
It means "Check your Apache error_log files because PHP and/or
> I discovered that the bit that Internet Explorer 4.0 didn't recognize a
> cookie as valid when I included an expiration time.
> This Doesn't Work:
> setcookie ("ArtPrintSession",$SessionID,time()+3600);
> What's the bug???
IE.
IE read the spec about "optional arguments" and decided that if y
1 - 100 of 161 matches
Mail list logo