It won't work simply because Apache 2.0 is very much in a state of flux.
The API's change constantly. We are many months away from any sort of
stable Apache2+PHP system. Unless you are a developer and can help fix
problems, you are much better off sticking with Apache 1.3.x and not
bugging the d
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
* and then Administration@myclassguide declared
> Hi
>
> Is it possible to pull text from a text file and insert it into a table in
> an html page using php.
Yes.
> In some cases it would have to pull text from a certain part in the text
> fil
What you are looking for is called a "Reverse Proxy". Do some google
searches on that term.
-Rasmus
> I have been trying to figure this out for a week now, with no luck. Posts
> to [EMAIL PROTECTED] have gotten no response. Anyone here happen to
> know how to do this?
>
> I understand that Ap
Well, in this particular case it really makes no difference as
PHP_AUTH_* is data that comes from the user anyway. Whether it is sent in
the GET-method data or in the Authenticate header is completely irrelevant
and turning register_globals off does not make any difference whatsoever.
The reason
Hello,
I have been trying to figure this out for a week now, with no luck. Posts
to [EMAIL PROTECTED] have gotten no response. Anyone here happen to
know how to do this?
I understand that Apache serves database driven web pages more quickly
using a proxy / cache. Most of the tutorials I hav
> For more discussion of this issue, please read the following:
>
> http://www.php.net/release_4_1_0.php
>
Thanks Lars Torben,
but one more question please.
There is "variables_order" in php.ini,
Is this very important thing concerned with this issue?
Regards :)
K.Tomono
> -Original Mes
Question 1:
How can I append strings to my authors array?
Me thinks this doesn't work :§) ?
$authors .= explode(";", $mydata->KW);
I'm getting "Invalid argument supplied for foreach()"
Question 2:
Once I get this working, I want to (a) alphabetise the contents of the
array, (b) count repititions,
Hi
Is it possible to pull text from a text file and insert it into a table in
an html page using php.
In some cases it would have to pull text from a certain part in the text
file and insert it into a specific cell in the table.
Thanks in advance
Mohamed
--
PHP General Mailing List (http://
On Thu, 2002-02-21 at 22:31, K.Tomono wrote:
> Hi there.
>
> This must be a curious question, but I want to know...
Globals, and register_globals = on, are insecure for exactly this
reason. This is why new versions of PHP will default to register_globals
= off, and why it's a good idea to use r
Hi there.
This must be a curious question, but I want to know...
Recently I've checked several globals, how it is overwritten.
the globals are $PHP_SELF and $PHP_AUTH_USER.
the first time, $PHP_AUTH_USER.
This is overwritten by the http GET values when such a following uri. (and
Post will be s
You might want to try phpbuilder, they have some great articles. phpMyAdmin
is housed on sourceforge.net. You can check them out there...
"Jtjohnston" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I know this is a bit off the wall for most, but for what p
Hello,
By using telnet option how i will send a mail from my machine using
php..If any one came to know this plz tell me how to do it...
-Uma
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
How about I answer my own question :)
Same as you reference a member variable when its declared within the child.
I had another problem that was causing me to think differently.
Amazing what a little RTFM time can do.
Sorry to annoy.
Cheers,
Brad
-Original Message-
From: Bradley Go
I have a .txt file that's holding some log files generated by a php script. There is
then another script that parses the logs and displays results.
* This is what's really strange:
when new logs are generated (meaning that the .txt file now has new lines with log
data) the php parser is readi
Hi All,
I am able to call parent functions ok, but can't seem to be able to
reference its variables from a child class.
How does a child call a member variable of it's parent in php?
Cheers,
Brad
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://
I was wondering if there's any way to display a value to the user that keeps
changing? I know about flush(), but that just prints it out before the
script ends, but doesn't display it in one place. Is there a way?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http:/
Ok not really a problem, but more of a.. Well I will let you judge :)
When cookies are disabled in a browser my site shows the url:
http://www.whatever.com/index.php?sname=3432432432432432432 etc etc
but when I have cookies enabled it shows
http://www.whatever.com/index.php?
Which is fine and
In article <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] (Jtjohnston) wrote:
> What header do I type to gzip something out on the screen? To make the
> output go faster, such as this text output:
> http://ccl.flsh.usherb.ca/db/export_to_nb_format.php
> I don,t want to actually zip the output, just make
I've narrowed down working code to this, but does it really do the job?
Does this really go faster?
header("Content-type: text/plain");
...
while ($personne = mysql_fetch_object($news))
{
ob_start();
$output = "";
$output .= "R#:".$personne->id."¶\n";
if($personne->TNum != ""){$output .= "T#:".$
if it "does" then there's one small problem with it.
you have the echo before the ob_end_clean(), it should be after...
-Original Message-
From: jtjohnston [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 22, 2002 1:25 PM
To: [EMAIL PROTECTED]
Subject: [PHP] This?: ob_start
Does th
Does this do it?
ob_start();
while ($personne = mysql_fetch_object($news))
{
$output = "";
$output .= "R#:".$personne->id."¶\n";
if($personne->TNum != ""){$output .= "T#:".$personne->TNum."¶\n";}
$output = ob_get_contents($output);
echo $output;
ob_end_clean();
}
--
PHP General Mailing Lis
It's called GZIP output buffering whatever that may be?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Are you trying to draw TTF fonts on a truecolor image? If so, GD-2.0.1
has a bug which turns of anti-aliasing of the fonts in that case.
GD-2.0.2 will have the fix. For now, try it with a non-truecolor image
and I bet the font will look just fine.
You can also ask Wes Furlong nicely for the pat
What header do I type to gzip something out on the screen? To make the
output go faster, such as this text output:
http://ccl.flsh.usherb.ca/db/export_to_nb_format.php
I don,t want to actually zip the output, just make it go faster. Someone
once told me I could do that so the server spits output f
Hello All,
Ok , I am about to loose my mind... this list is my last option i think :)
this is what i have tried :
system("convert -pen black -draw 'text 120,60 YourText Here' imageA.jpg imageB.jpg");
The above does not work , the most i can get it imageA.jpg Becomes imageB.jpg but the
text
Hi.
I've compiled my own version of PHP to be used as the PHP4 handler for
Stronghold/Apache.
Compolition succeeds, but when I attempt to restart Stronghold with the
new module, the following is reported:
>Syntax error on line 234 of /usr/local/stronghold/conf/httpd.conf:
>Cannot load /usr/
There is a tool from Microsoft to do exactly this:
http://webtool.rte.microsoft.com
Christian
"Theodore Brinkman" <[EMAIL PROTECTED]> schrieb im
Newsbeitrag
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Pull the plug? :)
>
> -Original Message-
> From: Chris Lott [mailto:[EMAIL PROTECTED
In article <00ae01c1bb10$dc440280$[EMAIL PROTECTED]>,
[EMAIL PROTECTED] says...
> I want to define a variable that I can reference on ALL of my PHP pages.
> Ideally, I'd like to do it in php.ini or some similar place so that I can
> modify it as I place code on different systems, but not need to
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
says...
> Hello,
>
> I created a librairy with configuration setting: background color, font size,
> customer's name, etc. Like this:
> (lib_config.inc)
>
> $bgcolor = "#ff";
> $co = "ABC enterprise";
>
> A second file is building html pag
Hi there :) One of the most common methods of achieving this is by using
session variables. First the user logins in through a form with a username
and a password, you check these against the database to make sure they are
who they say they are, once that is established you could create a session
I know this is a bit off the wall for most, but for what purpose do you
use phpmyadmin & mysql?
What are your projects?
Does anyone know of any good articles that discuss databasing, PHP,
MySQL and or PHPMyAdmin for academic purposes?
I'm a university researcher and want to collect some data.
Joh
Hi,
I'm using php-4.1.1 with
Configure Command
'./configure' '--with-apxs=/usr/local/apache/bin/apxs' '--enable-dbase'
'-- with-mysql=/usr/local/mysql' '--with-mm' '--with-openssl'
'--enable-sockets' '- -with-zlib' '--with-curl' '--enable-discard-path'
apache (w modssl):
gavin@myhost apache>
Janet,
I think you probably need to investigate the concept of sessions.
You were a bit sketchy on details, but it sounds like this is what you want.
If you'd like more help, post to the list, or contact me directly at
[EMAIL PROTECTED] (aim:mgkimsal)
Wg4- Cook wrote:
> Hi there,
>
> I am st
I can think of three ways you could do this.
1. as a cookie
2. using sessions
3. put it in every link
Martin
-Original Message-
From: WG4- Cook, Janet [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 22, 2002 10:59 AM
To: PHP db list; PHP List
Subject: [PHP] Help needed - need to acces
why can't i see anywhere in this code what value:
$row["PicNum"];
contains?
try:
instead of:
" >
if, it's working then, then your error is there...
Greets,
Edward
- Original Message -
From: "Narvaez, Teresa" <[EMAIL PROTECTED]>
To: "'Lars Torben Wilson'" <[EMAIL PROTECTED]>; "Andr
Hi there,
I am struggling with a concept and can't seem to find a way to do it so
hoping you all can help.
We want to use PHP with MySql Db.
For security reasons on the DB, it is to be accessed only through this front
end i.e. via the internal web
Each user will have a number of levels of acce
dunno about using eval() but this worked - not as elegant as I'd want it,
but it works
class test
{
function user_func($f, $a, $b) { $z = $this->$f; return ($z ? $z($a, $b)
: null); }
}
$blah = new test;
$blah->new_func = create_function('$a,$b', 'return $a+$b;');
echo $blah->user_func("new_fu
Hi all,
I've seen some posts and info elsewhere regarding downloading files - mostly
stating problems with the way IE handles this function.
What I'm trying to do is :
1 - offer files,.. .doc, .zip and others
2 - allow the user to click on a URL, or button
3 - have the options to Ope
Use single quotes? I think that stops it from interpreting the regular
expression before hand.
-Original Message-
From: Martin Towell [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 22, 2002 10:32
To: [EMAIL PROTECTED]
Subject: RE: [PHP] Re: regular expressions
yeah! remember that php
yeah! remember that php interprets the string first, before it gets to
reg.ex. !! That's some I keep forgetting... lol
Martin
-Original Message-
From: Murray Chamberlain [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 22, 2002 2:48 AM
To: [EMAIL PROTECTED]
Subject: [PHP] Re: regular ex
I don't know why you would need to do this in the PHP installation. I
just create a globals.php file (call it what you like) that contains all
of my multi-script variables. Then I include the file into each script
as needed. The file contains CSS pointers, database functions, and
anything else
On Thu, 2002-02-21 at 14:11, James Nord wrote:
> Unfortunatly I know some that need to leave it.
>
> >If you would state exactly what the problem with the slash being
> >there is, perhaps we could help you.
> >
> The HTML renderer that comes with Java (jfc) renders the '>' due to the
> '/' bein
On Thu, 2002-02-21 at 14:04, Narvaez, Teresa wrote:
> Hello, Thanks for your replies. I still cannot access the variable fileId
> :-(. I would appreatiate any more comments. Thanks in advance -Teresa
>
> Warning: Undefined index: fileId in
> /home/narvaez/public_html/ddownloadfile.php on line
Joe,
Do you know when the file size is checked ??
I think it only gets checked after the form is posted and file uploading is
finished ??
I don't know how it's possible to catch things before user uploads - now
that would be neat :-)
Jim.
"Lerp" <[EMAIL PROTECTED]> wrote in message
[EMAIL
I want to define a variable that I can reference on ALL of my PHP pages.
Ideally, I'd like to do it in php.ini or some similar place so that I can
modify it as I place code on different systems, but not need to make changes
in lots of different places.
I looked at the Configuration section of the
You can use the php_admin_value in your virtual host.
For example:
php_admin_value safe_mode 0
This will turn safe mode off for that virtual host.
Hope this helps,
Harry
__
Do You Yahoo!?
Yahoo! Sports - Coverage of the 2002 Olympic Games
http:
Lars Torben Wilson wrote:
>On Thu, 2002-02-21 at 09:45, James Nord wrote:
>
>>Hi,
>>
>>How do I get PHP to output an HTML tag instead of and XML tag when using
>>trans_sid and a form in PHP.
>>
>>(eg)
>> php outputs
>>
>>
>>
>>but I don't want the trailing /
>>
>>/James
>>
>
>I already told you
Hello, Thanks for your replies. I still cannot access the variable fileId
:-(. I would appreatiate any more comments. Thanks in advance -Teresa
Warning: Undefined index: fileId in
/home/narvaez/public_html/ddownloadfile.php on line 6
Warning: Undefined variable: fileId in
/home/narvaez/public
Is is possible to use an object method to set_error_handler instead of a function?
Instead of this: set_error_handler("errorHandler");
can this somehow be done: set_error_handler($obj->errorHandler); (The object method is
of course valid.)
===
Ron Dyck
WebbTech
I know this is not a PHP question but would really appreciate comments
regarding experiences with the software E-mail Spyder or any other
experiences with other software.
Thanks,
Ben
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I'm sorry I did not read through your entire post the first time...
You set the SMTP server in php config file:
SMTP = smtp.yourisp.com
> -Original Message-
> From: Cristian Cerda [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 21, 2002 4:36 PM
> To: [EMAIL PROTECTED]
> Subject: [P
The PHP-Dev list doesn't want to hear it, so I guess I'm *stuck* back
here.
Will someone please tell me why the latest CVS of PHP won't let Apache
2.0.32 work and when a graceful fix will be implemented?
Hmm..this sounds like it should go to the dev list...
--
Austin Gonyou
Systems Architect,
No, because you would not be sending a portion of the header then...
you would end up with a non-document in the primary window and the actual document in
the new window which isn't possible.
check the javascript command window.open, throw that into the body tag with an onload,
and that should
http://us4.php.net/manual/en/function.mail.php
> -Original Message-
> From: Cristian Cerda [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 21, 2002 4:36 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] outgoing email server
>
>
> How do you set up the outgoing mail server using mail()
How do you set up the outgoing mail server using mail() function? i just
can't find it in the manual... the idea is to send it through a mail
server that's not the one with PHP.
thanks,
--
Cristián Cerda Pé
[EMAIL PROTECTED]
Impulsando Ltda.
www.impulsando.com
San Pio X 2460 of.604
Providencia
Hey All,
Last night I was doing some coding.
I am not sure what happened but has anyone run into this error before.
Method Not Allowed
The requested method POST is not allowed for the URL /index.html.
Apache/1.3.19 Server at nocal.mkp.org Port 80
More data about this.
This ONLY appears with
Can't figure out where I am going wrong...
I cant seem to use the imagefttext function in PHP..it returns a warning
saying "No FreeType 2 support in this PHP build".
The configure, make, and make install of all programs complete without error
and ImageTTFText() works (but the fonts do not look a
Hi there :) Did you set a max file size in your upload form? See my form
below, notice the 'MAX_FILE_SIZE' value='102400' part within hidden field.
This should appear before the rest of the form. You can adjust this value as
you wish.
Upload
Resume:
That was it. Thanks a bunch.
Jeremy
"Cc Zona" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> In article <[EMAIL PROTECTED]>,
> [EMAIL PROTECTED] (Jeremy Reed) wrote:
>
> > I was able to fix the 'unable to find dynamic etc.' error thanks to you
> > guys. Now
> Is there a webserver (Tomcat?) that supports both servlets/JSP and PHP? If so, is it
>possible to have PHP and servlet/JSP code collaborating? I'm looking into using SOAP
>(apache project's implementation) but I need some of PHP's functionality.
You can use Tomcat and Apache together. There's
Is it possible to specify a different php.ini file for each virtual host? I
know that that "-c altphp.ini" syntax on the end of the commandline will
switch it, however, that doesn't exactly work like I'd hoped in Apache's
configuration. I'd like a solution that worked with either the CGI or module
Hi,
I am trying to set a small script that would let my clients upload file with
a Explorer or Netscape, but the problem is it would let me upload any file
that is great than a 1MB. We get an error that the file "none" could not be
read.
I have set the upload_tmp_dir=/tempupload is has been chmo
We use iPlanet here, and it has Servlet support built in. (nice config
menus, too). PHP works fine too, it just takes a little brain power to
install it correctly.. Anyway, we do have a little servlet guarding a
secure directory, and it uses the PHP engine to grab the templates, same as
every o
Is there a webserver (Tomcat?) that supports both servlets/JSP and PHP? If so, is it
possible to have PHP and servlet/JSP code collaborating? I'm looking into using SOAP
(apache project's implementation) but I need some of PHP's functionality.
thanks in advance,
thalis
--
PHP General Mailin
On Thu, 2002-02-21 at 08:16, Andrey Hristov wrote:
> It seems that you use global where it is not needed- outside of any function
> First error because error_reporting is not set to 0 in php.ini so error_reporting
>valus includes E_WARNING.
> if you set error_reporting=0 in php.ini or error_repor
On Thu, 2002-02-21 at 09:45, James Nord wrote:
> Hi,
>
> How do I get PHP to output an HTML tag instead of and XML tag when using
> trans_sid and a form in PHP.
>
> (eg)
> php outputs
>
>
>
> but I don't want the trailing /
>
> /James
I already told you how in the bug system: use output b
On Thu, 2002-02-21 at 10:44, Dave wrote:
> Apache server with PHP module
> Apache user is nobody:nobody
> Virtual user is user1:user1
[snip]
> Ideas or suggestions appreciated.
>
> Dave
Well, this isn't really a PHP issue, but what the hell. If you need to
do filesystem stuff as a certain user
Hello all:
I am attempting to utilize IMP 3.0 as web based e-mail. In order to do
this, I had to recompile PHP with --with-imap (imap-2001a from UW),
--with-xml, and --with-xml (God know why, but that's what IMP wanted). All
went well, everything configured and compiled happily. Then I tried t
I deleted everything in the php dir and reinstalled it all.
- Original Message -
From: "Hunter, Ray" <[EMAIL PROTECTED]>
To: "'Jeremy Reed'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Thursday, February 21, 2002 4:32 PM
Subject: RE: [PHP] unable to load dynamic library etc. etc.
>
Apache server with PHP module
Apache user is nobody:nobody
Virtual user is user1:user1
in VirtualHost we have
DocumentRoot /www/user1
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
php_admin_value uplo
No there really isn't. I wrote an extension that does it for me, but
I am waiting to see what the second zend engine will have for this
rather that using my hack. Maybe check the Zend Engine 2 mailing list
to see what the future may hold.
Matt
Mika Tuupola wrote:
>
> Is there a way to
what font are you using?
hugh
- Original Message -
From: "Monty" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, February 21, 2002 1:10 AM
Subject: [PHP] Paths and ImageCreate(), GetImageSize()...
> I'm having a hard time figuring out exactly how paths should be listed
when
>
In article <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] (Jeremy Reed) wrote:
> I was able to fix the 'unable to find dynamic etc.' error thanks to you
> guys. Now I have a new problem. It seems that I am unable to process form
> data. Before upgrading to 4.1.1, you were able to refer to the form da
Why not use javascript to launch a new window?
/dkm
- Original Message -
From: "Ali" <[EMAIL PROTECTED]>
To: "'Php-General (E-mail)'" <[EMAIL PROTECTED]>
Sent: Thursday, February 21, 2002 8:23 AM
Subject: [PHP] header ("Location: URL");
> Hello,
>
> is there any possibility of redirecti
Thanks. Everything is fixed. A helpful tool I found useful is
'depends.exe'. It finds and lists problems with dependencies on .dll files.
It was quite helpful in tracking down the problem.
Jeremy
"Ray Hunter" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> P
There is an IDE called PHPMole at:
http://www.akbkhome.com/Projects/Phpmole-IDE/
However, it looks to be Linux/Unix-only...
--
Aaron Gould
[EMAIL PROTECTED]
Web Developer
- Original Message -
From: "Dasmeet Singh Arora" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, Febr
I was able to fix the 'unable to find dynamic etc.' error thanks to you
guys. Now I have a new problem. It seems that I am unable to process form
data. Before upgrading to 4.1.1, you were able to refer to the form data
simply by concatenating a '$' and the form element name i.e.
would have be
try http://www.microcode.de/index.php3?LANGUAGE=english
microCODE from Databay enables you to encrypt your PHP scripts before
publication.
Thereby you can protect your code against unwanted insights or even
modification of the sources by a unauthorized third party. This is
especially required for
Hi,
How do I get PHP to output an HTML tag instead of and XML tag when using
trans_sid and a form in PHP.
(eg)
php outputs
but I don't want the trailing /
/James
--
Technology is a word that describes something that doesn't work yet.
Douglas Adams
--
PHP General Mailing List
Hi
Any consultant will tell you that all you need to do is define
the comparison criteria and you can choose the winner easily.
PHP: ease of use, low cost of ownership, etc.
Java: scalability, choice of implementations, etc.
I just hope you can live with your choices!
Regards, John
Berlina <[
I have had similar problems with compiling GMP on win32 under cygwin.
I only have two suggestions put the oracle library under /usr/mingw I saw
this on a google group forum. The other thing is, that in the manual you
will probably need some additional files for SSL. BTW I think mysql is
natively
I do not know of any editors for php-gtk. Here is the general list:
[EMAIL PROTECTED]
website: http://gtk.php.net
Ray Hunter
Firmware Engineer
ENTERASYS NETWORKS
-Original Message-
From: Dasmeet Singh Arora [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 21, 2002 8:59 PM
Hello! Can anyone tell me about sites where I can find some help and
resources on PHP GTK. Is their any visual editor available for PHP GTK?
Thanks in advance.
--
'The rose is sweetest washed with morning dew
And love is loveliest when embalmed in tears'
- Walter Scott
Place all the dlls in the same directory as the php.exe file and in your
php.ini file have the extension_dir = .\ (windows).
This works for me great...
Ray Hunter
Firmware Engineer
ENTERASYS NETWORKS
-Original Message-
From: Jeremy Reed [mailto:[EMAIL PROTECTED]]
Sent: Thursday, Febr
I keep getting this error message and cannot figure out why. The
extension_dir is set correctly in the php.ini, I have put the .dlls into
every conceivable directory I can think of and nothing seems to work.
Anybody else had and fixed this problem?
Thanks,
Jeremy
--
PHP General Mailing Lis
I recently made a class that gets its info from the NOAA which is free
for public use.
At the moment it is a little buggy and not quite complete.
You can look at it here http://spectre013.grunews.com/weather
It works for any location in the world by using the 4 character Airport
Code.
I will
It seems that you use global where it is not needed- outside of any function
First error because error_reporting is not set to 0 in php.ini so error_reporting
valus includes E_WARNING.
if you set error_reporting=0 in php.ini or error_reporting(0); in the script you will
not receive the first war
Hi
Is it possible to have PHP spawn a second process that will run
independently of the script that started it?
This is what I'm trying to do :
1 - page.php > browser calls it, starts to execute
2 - if (condition) > fetch information from server.x via http pipe, log
to database
3 - display page
Hi NG
Help needed, i have make a new istallation of php 4.1.1 (with the
installer). I configured everyhing like iis php.ini. registry and permission
on th ntfs partition. I coppy all the dll`s from php (not the extensions
dll´s) to system32. I downloded to the win32 package with the extensions
pa
if you move your mouse over the "Download Now" section... what is the
statusbar displaying??
Edward
- Original Message -
From: "Narvaez, Teresa" <[EMAIL PROTECTED]>
To: "'Sanduhr'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Thursday, February 21, 2002 5:05 PM
Subject: RE: [PHP] Re: N
Greets,
Edward
- Original Message -
From: "Sven Jacobs" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, February 21, 2002 4:56 PM
Subject: [PHP] Date calculations
> Hey
>
> I need to calculate the amount of days between 2 point
> point 1 is now the second point is in the
I comment it out but I got this error:
Warning: Undefined variable: fileId in
/home/narvaez/public_html/ddownloadfile.php on line 22
Could not get file list: You have an error in your SQL syntax near '' at
line 1
Thanks for any help!.
-Original Message-
From: Sanduhr [mailto:[EMAIL PR
look at the mysql docs
at www.mysql.com/doc/
there are some functions about times. it is easy to work with time intervals.
Best regards,
Andrey Hristov
- Original Message -
From: "Sven Jacobs" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, February 21, 2002 5:56 PM
Subject:
Hey
I need to calculate the amount of days between 2 point
point 1 is now the second point is in the past
the format I have is in 2002-02-25 10:02:23 ( that is the format i have in
my db )
now if I have today 2002-02-25 10:02:04 and the other day is 2002-02-24
09:02:04
That means that the delta
The include path should specify the file you are trying to include relative
to your file that is including.
E.g..
Consider two php file 1.php and 2.php if they are in the same directory and
you want to include 1.php with 2.php you simply add the line at the
beginning of 2.php
I hope that help
I think you have some un-needed code there. But anyway you might need to use
a double backslash infront of the |
If that doesn't work mail me back
Muz
"German Castro Donoso" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I have a problem with ereg function.
In the method line, the URL being POST'd to is form2.php, not form.php. Is
that the correct file name, or should that be form.php?
Kirk
> -Original Message-
> From: marcbey [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 21, 2002 5:47 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] sen
Sorry about that,
I don't think you can but why don't you just print out some JavaScript
statements to the browser. This webpage has some examples.
http://www.michael-thomas.com/javascript/ex_window_openclose.htm
Muz
"Ali" <[EMAIL PROTECTED]> wrote in message
001701c1bada$f5ca5780$[EMAIL PROTE
"Ali" <[EMAIL PROTECTED]> wrote in message
001701c1bada$f5ca5780$[EMAIL PROTECTED]">news:001701c1bada$f5ca5780$[EMAIL PROTECTED]...
> Hello,
>
> is there any possibility of redirecting a request URL using
header:Location
> and openning the requested URL in a new window linke target="blank" in
htm
first of all:
why do you use:
[0-9][0-9]*...
you better use: [0-9]+ then
same goes for \w
and I guess you don't need the ('s and )'s either...
Edward
- Original Message -
From: "German Castro Donoso" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, February 21, 2002 5:26 PM
Su
1 - 100 of 139 matches
Mail list logo