Hello all,
I was disappointed to know that other than UNIX, PHP doesn't support
processes, unless I don't have the latest news.
For my particular needs, and after investigating many sources, I see
that processes are my friend. My needs comprise of the following:
1) being able to listen on a spec
Ask your host to set-up a .htaccess file to turn register_globals ON, or you
need to do some research in the archives for "register globals"... it's been
discussed to death.
Basically, instead of a form value being something like $firsName, it's now
$_POST['firstName'] or $_GET['firstName'] (depen
I ended up using this:
$time = time();
$weekday = date('w',$time);
$suntimestamp = $time - ($weekday * 86400);
$sattimestamp = $suntimestamp + 604800;
echo 'Words for the week from '.date('jS F Y',$suntimestamp).' to
'.date('jS F Y',$sattimestamp).'.';
--
JJ Harrison
[EMAIL PROTECTED]
"Noodle
It it better that you use a subject that is related to the problem eg.
"Email Script not working after server upgrade"
--
JJ Harrison
[EMAIL PROTECTED]
"`Yan Grossman" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Dear Friends,
>
> I run some PHP scripts to
Hi
I wonder if someone can give me some pointers on this.
I have cyrus/sendmail running on a RH server, and it works great. I use
ximian evolution as my mail client and other users also has no problem
with OE or MO.
I've been looking at various web based mail clients to implement on my
server for
On Tuesday 19 November 2002 17:40, Noodle Snacks wrote:
> It it better that you use a subject that is related to the problem eg.
> "Email Script not working after server upgrade"
And also, it is better to include your code inline (as text) rather than as an
attachment. A lot of people would not b
Currently, I have the following code:
class overall {
var $loaded;
function load($class){
//eval("global \$$class;"); // This didn't work either
$this->loaded[] = $class;
eval("\$this->$class = new $class;");
return true;
}
}
class foo {
var $bar;
// Constructor
function bar(){
actually, the foreach should read:
foreach($overall->loaded as $key=>$val){
$val =& $overall->$val;
}
still doens't work though
Tularis wrote:
Currently, I have the following code:
loaded[] = $class;
eval("\$this->$class = new $class;");
return true;
}
}
class foo {
v
Hi,
I fixed my code to handle forms using $_REQUEST. Just having problem with
the fields with multiple contents...
the one you have to call like field[0], field[1],etc...
How do I use the brackets inside brackets?
my case is this:
Thanks.
I have fixed everything with $_REQUEST
but I am having pro
You'd write something like:
$_REQUEST['pac_hot'][0], $_REQUEST['pac_hot'][1] and so on.
Noor
> -Original Message-
> From: Yan Grossman [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 19, 2002 12:07 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] problem with code (almost fixed)
>
>
>
Hi,
Does anybody know where to find a pre-compiled Windows (XP) version of
PHP that includes multistring functions? I checked phpdev on firegpages
and other sites that usually hold these installations but their versions
don't support those multistrings yet. Any help/links are appreciated!
Simon
http://www.evilwalrus.com/viewcode/560.php
"Cj" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I'm posting this again as i got a mail saying
>
> Trend SMEX Content Filter has detected sensitive content.
>
> Place = [EMAIL PROTECTED]; ;
> Sender = CJ
> Subject =
I like to see html highlighting, so I prefer first method, but for some
small snippets I also use echo
Ernest E Vogelsinger wrote:
As Maxim pointed out a couple of days ago, this is just a matter of
nanosecs, it shouldn't be really noticeable from performance.
The fastest was to display non-PHP
Hello to everybody,
I just want to display a character like D x times like DDD where x is a
$variable i get from the database i cannot make it work like it is on
perl (i don't even know if it is working the same way) and i can't find
a reference in the manual on php.net, maybe it's a silly ques
Let's say you had one site and one site only to get the latest PHP/MySQL
news, articles, reviews, resources, tutorials, advanced stuff etc.
What would it be?!?
Has anyone used book publisher O'Reilly's new "Safari" online book site
for PHP/MySQL books? I was hoping to use it so I could download whole
books and possibly print them out.is it capable of doing something
like this or is it next to impossible?
Yan Grossman wrote:
Hi,
I fixed my code to handle forms using $_REQUEST. Just having problem with
the fields with multiple contents...
the one you have to call like field[0], field[1],etc...
How do I use the brackets inside brackets?
my case is this:
Thanks.
I have fixed everything with $_REQUE
Phil Schwarzmann wrote:
Let's say you had one site and one site only to get the latest PHP/MySQL
news, articles, reviews, resources, tutorials, advanced stuff etc.
What would it be?!?
zend.com :)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/
hi,
$numtimes=400;
for ($i=1;$i<=400;$i++)
{
echo 'd';
}
---Or---
$numtimes=400;
for ($i=1;$i<=400;$i++)
echo 'd';
-Or
$numtimes=400;
for ($i=1;$i<=400;$i++)
{?>d
_
Tired of spam? Get advanced junk mail protection wit
Tjoumaidis Tasos wrote:
Hello to everybody,
I just want to display a character like D x times like DDD where x is a
$variable i get from the database i cannot make it work like it is on
perl (i don't even know if it is working the same way) and i can't find
a reference in the manual on php.net,
> -Original Message-
> From: Tularis [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 19, 2002 12:45 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Re: problem with code (almost fixed)
>
> first, change this: $_REQUEST['pac_hot[0]'] to:
> $_REQUEST["$pac_hot[0]"]
> a single quote ( ' )
str_repeat ()
Tjoumaidis Tasos wrote:
**
This Message Was Virus Checked With : SAVI 3.61 September 2002 Last
Updated 15th November 2002
**
Hello t
Hi Tjoumaidis,
Tuesday, November 19, 2002, 1:30:39 PM, I've got:
TT> Hello to everybody,
TT> I just want to display a character like D x times like DDD where x is a
TT> $variable i get from the database i cannot make it work like it is on
TT> perl (i don't even know if it is working the same w
Hi all,
I made a script that works on a very long charachter chain and its process
is lnggg about 5 minutes !
Do you have any tips to make it faster ?
Thanks,
Hacook
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi,
> I made a script that works on a very long charachter
> chain and its process is lnggg about 5 minutes !
> Do you have any tips to make it faster ?
My mysterious ninja PHP developer powers have told me that you need to
fiddle with lines 23 and 72, that's where it's slowing down.
I
on 19/11/02 10:00 PM, Hacook ([EMAIL PROTECTED]) wrote:
> Do you have any tips to make it faster ?
The answers will come in faster if you tell us how you're "processing" it.
Justin French
http://Indent.com.au
Web Developent &
Graphic Design
--
PHP G
Great, That's exactly what i was looking for, thx to the other guys as
well and sorry for not mentioning the whole problem which was that i
wanted to pass the value to a variable.
Steel wrote:
Hi Tjoumaidis,
Tuesday, November 19, 2002, 1:30:39 PM, I've got:
TT> Hello to everybody,
TT> I just
die()
but seriosly, if you don't tell us what the script does, we can't tell
you if it can be made faster
Hacook wrote:
Hi all,
I made a script that works on a very long charachter chain and its process
is lnggg about 5 minutes !
Do you have any tips to make it faster ?
Thanks,
Hacook
Sorry, now I noticed I forgot to add [$i]:
if(!$_FILES['photo']['tmp_name'][$i]) break;
Marek Kilimajer wrote:
you need to do it another way, e.g.:
for($i=0; $i < MAX_FILES; $i++) {
if(!$_FILES['photo']['tmp_name']) break;
... now work with the file.
}
electroteque wrote:
hi i need t
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 General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
- Original Message -
From: "Justin French" <[EMAIL PROTECTED]>
To: "Tristan Carron" <[EMAIL PROTECTED]>
Sent: Tuesday, November 19, 2002 12:23 PM
Subject: Re: [PHP] Loonng
> You should post this to the list, not me direct :)
>
> Justin
>
>
> on 19/11/02 10:10 PM,
I'd say you've already determined the simplest way to do it.
When the page is generated by PHP, have it insert the
necessary data into appropriate places in a javascript function.
When a user clicks the 'recharge' button, they are prompted for
the amount they wish to use to recharge, and then ar
Hi folks:
Have any of you guys encountered the following error:
CGI Error
The specified CGI application misbehaved by not returning a complete set of
HTTP headers. The headers it did return are:
My Scripts that require user interaction and
self modification often encounter this. I have no clue
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
hmmI hope you're happy cause you certainly gave Intravative Software a
bad public image. I wouldn't buy/try betas from your company for NOTHING
~Paul
On Wednesday 13 November 2002 05:14 pm, Jeremy Wilson wrote:
> Well fine... by reading a bun
Your function seems to return string before first occurence of '*'.
This should be faster:
function conte($string) {
return substr($string,0,strrpos($string,'*'));
}
Tristan Carron wrote:
- Original Message -
From: "Justin French" <[EMAIL PROTECTED]>
To: "Tristan Carron" <[EMAIL PROT
As a project I'm working on that will later manifest into something more,
I'm offering free MySQL hosting on one of my servers. Just enter the
desired username and password, and 3 databases will be created for you to
use from your PHP scripts. The info you'll need to connect to the MySQL
server
Another resource to check out:
http://www.onlamp.com/pub/a/php/2002/11/07/php_map.html
"Vernon" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Does anyone know how I can set something up that tells the distance
between
> one Zip Code and another? I'm needing t
I've recently finished creating a Script Index (almost identical to
HotScripts) for people to submit their PHP (and Perl) scripts. The
database right now is over 7,000 (both PHP and Perl), but only because
I've collected the data from other sites. If you have a script, I ask of
you to submit it
Not to burst your bubble, but I'have had all of this working since the day
RedHat 8.0 was released. Though I compiled everything by hand instead of
using RedHat's RPMs. Just read the comments on php.net under the
apache/unix install and did what they said to add to httpd.conf for PHP.
Hi all,
does anybody know a way to make a distinction between robots and users?
should I use the user agent? Or is this not a safe method.
If the visitor is a spider/robot I want to include some script containing extra URL's
for the robot.
regards Wilbert
-
Pas de Deux
Dude, you rock, way to give to the community.
On Tue, 2002-11-19 at 08:34, PHP Mailing List wrote:
> As a project I'm working on that will later manifest into something more,
> I'm offering free MySQL hosting on one of my servers. Just enter the
> desired username and password, and 3 databases w
I'm currently subsribed to Oreilly's Safari.
I find it very useful for coming up to speed quickly but even though the
complete book is available online it is still no replacement for a hard
copy of a book. I usually read the book online then buy it if I like
it.
I have not read any of the MySQL
test post only
_
Ãâ·ÑÏÂÔØ MSN Explorer: http://explorer.msn.com/lccn/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Is it will increase the processing time when too many "include" process in a
program?
Bryan
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Is it will increase the processing time when too many "include" process in a
program?
Bryan
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I want to use Javascript to move items from a source list to a
destination list and then PHP to retrieve the items in the destination
list. After much head bashing and pointers from various forum archives
I am nearly there! Can anyone help me?
My remaining problem is that the array that PHP
WOOP (Web Object Of Php)
Have you write PHP program like this ?
// begin
class TForm extends System_UI_Form
{
function init()
{
$this->label1 = & new System_UI_Label("label1", &$this);
$this->button1 = & new System_UI_Button("button1", &$this);
$this->button2 = & new System_UI_Button("butt
Hi all,
please which PHP debugger is the "best one"? (fast keyboard commands,
variables, includes, reliability etc.).
Which PHP debugger works well under Windows, which under Linux?
thanks...
---
Odchozí zpráva neobsahuje viry.
Zkontrolováno antivirovým systémem AVG (http://www.grisoft.cz).
Verze
Is there a question in here somewhere? What do you need help with?
---John Holmes...
- Original Message -
From: "shi ziye" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, November 19, 2002 9:20 AM
Subject: [PHP] New generation of PHP Program, reaction to ASP.NET
> WOOP (Web O
h...
I *think* PHP is platform independant for the most part, and it is not like it
is a compiled language where you have fancy debuggers to set breakpoints, step
through the code, etc...
Why not use the functions built into PHP?
echo " ";
if a mysql problem: mysql_error()
-Brad
> Hi all,
Actually, I belive you can set breakpoints and step through code with
Zend Studio. (Free download for personal use).
http://www.zend.com
On Tue, 2002-11-19 at 04:35, [EMAIL PROTECTED] wrote:
> h...
> I *think* PHP is platform independant for the most part, and it is not like it
> is a compi
I want hackers to help me to finish the whole project!!!
It is only the begining. and it will change our web programing method
Goto www.shiziye.net/woop to see more!
Mail to [EMAIL PROTECTED] if you want to help me.
Is there a question in here somewhere? What do you need help with?
---John Holme
WOOP-DE-DO...
---John Holmes...
- Original Message -
From: "shi ziye" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Tuesday, November 19, 2002 9:39 AM
Subject: Re: [PHP] New generation of PHP Program, reaction to ASP.NET
> I want hackers to help me to finish the
I am pulling from a datetime field in mysql. The actual data looks like
this: 2002-11-30 00:00:00 When I output the data to the page, I want it to
appear as 11/30/2002. I want to use a php date format. I do not want it
formatted as it comes out of the db. But date("m/d/y", $myrow[departdate])
r
Eddie,
This is a function that I wrote to handle this same situation:
# --- Function to format date output ---
function makedate($format, $indate)
{
$temp = explode("-", $indate);
$fulldate = mktime(0, 0, 0, $temp[1], $temp[2], $temp[0]);
> I am pulling from a datetime field in mysql. The actual data looks like
> this: 2002-11-30 00:00:00 When I output the data to the page, I want it
to
> appear as 11/30/2002. I want to use a php date format. I do not want it
> formatted as it comes out of the db. But date("m/d/y", $myrow[depart
I have been working on a program and have come up to a block. A lot of
people on the PHP list have been able to help me for free already. But
what I have left to do would probably be to much to ask for someone to do
for free. Are their any EXPERT PHP (with MySQL) programers out there that
wo
When declaring a new object ( $obj=new Something; ), do they need to be
then registered in a session ( session_register("obj"); ) if you want to
use them for a different script?
not sure how to post, sorry!
_
Ãâ·ÑÏÂÔØ MSN Explorer: http://explorer.msn.com/lccn/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
It wrks okay here; I guess i'm keeping register_global= On in php.ini !
Try debuging your sample using get_declared_classes and you'll find what
you're missing
class overall {
var $loaded;
function load($class){
eval ("global \$$class;");
eval("\$$class = new $class;");
print_r(get_declared_
> -Original Message-
> From: Phoebe Bright [mailto:[EMAIL PROTECTED]]
> Sent: 19 November 2002 14:20
>
> My remaining problem is that the array that PHP sees only
> has the final
> few characters of the values it should have.
>
> This is the result of print_r after selecting two items
> I have been working on a program and have come up to a block. A lot of
> people on the PHP list have been able to help me for free already. But
> what I have left to do would probably be to much to ask for someone to do
> for free. Are their any EXPERT PHP (with MySQL) programers out there tha
At 16:10 19.11.2002, Phil Schwarzmann spoke out and said:
[snip]
>When declaring a new object ( $obj=new Something; ), do they need to be
>then registered in a session ( session_register("obj"); ) if you want to
>use them for a different script?
-
I would like to download a word-document from another site and save it to my
harddrive.
How would I go about doing this?
I tried:
http://host.com/document.doc;
$fd = fopen ($filename, "rb");
$string = fread ($fd, filesize ($filename));
Hello,
(B
(B"Kondwani Spike Mkandawire" <[EMAIL PROTECTED]> wrote in message
(B[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
(B> Hi folks:
(B>
(B> Have any of you guys encountered the following error:
(B>
(B> CGI Error
(B> The specified CGI application misbehaved by not returning a complete
PHP is true and blue in relation to error messages (in this case
anyway):
Warning: stat failed for http://host.com/document.doc (errno=2 - No such
> file or directory) in d:\inetpub\wwwroot\dl-doc.php on line 8
The file either doesn't exist on "host.com" under the root directory
as "document.doc"
Hello,
"Phil Schwarzmann" <[EMAIL PROTECTED]> wrote:
> Let's say you had one site and one site only to get the latest PHP/MySQL
> news, articles, reviews, resources, tutorials, advanced stuff etc.
>
> What would it be?!?
http://www.phpbuilder.com/ ?
Give me another choice :)
http://w
At 16:56 19.11.2002, Michelle spoke out and said:
[snip]
>I would like to download a word-document from another site and save it to my
>harddrive.
>How would I go about doing this?
>
>I tried:
>$filename = "http://host.com/document.doc;
>
>$fd = fopen ($filen
Hello,
"Simon Dedeyne" <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> Does anybody know where to find a pre-compiled Windows (XP) version of
> PHP that includes multistring functions? I checked phpdev on firegpages
> and other sites that usually hold these installations but their versions
> don't suppo
At 01:34 19.11.2002, shi ziye spoke out and said:
[snip]
>not sure how to post, sorry!
[snip]
Just the way you did :)
--
>O Ernest E. Vogelsinger
(\) ICQ #13394035
^ http://www.vogelsinger.at/
Hello,
"John Yamokoski" <[EMAIL PROTECTED]> wrote:
> I am new to PHP but wanted to know if its possible to do the following
with
> PHP.
>
> I want to grab the size of the users RAM and the speed of the users CPU.
Is
> this even possible with PHP since its a server side language??
>
> And if its no
I am developing a site, using XML and PHP for formatting. I want to have one HTML
template and call up the different XML files from a Javascript menu.
Ideally i want to be able to call files from a link, such as:
'index.php?action=load&file="file.xml"'
Not sure if this is the right format, b
"Jeremy Wilson" <[EMAIL PROTECTED]> wrote:
> Well fine... by reading a bunch of your other posts when you talk to
> people, it looks like you are just a rude SOB... so I am really not
> offended.
Who is offending who? You attacked a ml with a spam (yes, it's spam) and now
you're attacking people
I'm assuming you're trying to have a select list.
Try this:
File XML1
File foo
Just make sure you test the value you get for file, so that someone
doesn't pass you /etc/passwd (just an example).
-js
Adam wrote:
> I am developing a site, using XML and PHP for formatting. I want to have one H
AWSOME !!!
Cordialmente
Daniel Massón => Ingeniero de desarollo
[EMAIL PROTECTED]
www.imagine.com.co
Tels: (57)(1) 2182064 - 6163218
Bogotá - Colombia
- Soluciones web para internet e intranet
- Asesoría y Soporte Técnico
- L
Cheers for replying.
I have the menu in place already, it is the PHP end i'm not sure about.
Currently I have many php files which only differ in one line:
$filename="file.xml";
I want to be able to pass this value to the script through a link.
A.
- Original Message -
From: "Jonathan Sh
If the word document you are trying to download is already on the server,
you could probably just make a link to the file
http://host.com/document.doc";>
When the user clicks on it, they either view the document if they have the
MS Word plugin, or they are asked to download it. I'm not sure that
Does anyone know of any sites that offer a web based contact management
system that works in a similar way to ACT?
I want to implement such a system that connects to a mysql database
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello all,
I wish to use threads or processes under Windows. Is there a known .DLL
that I can load and use to do the work in Windows? Any URI for details
and information is highly appreciated.
I know of PHP's internal Process Control functions, but they don't work
outside UNIX.
Thanks in advance
Is there any way to get a php script to grap the output from a perl script?
Can you reverse that and have a perl script grab the output from a php script?
Kelly
mibbie give us a url to look at ACT? Or atleast a quick out-line of what it
does?
"Craig" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Does anyone know of any sites that offer a web based contact management
> system that works in a similar way to ACT?
>
> I w
If they are on the same machine and executable from the command line, then
you can use exec(), system(), backtics, etc to get the output.
If they are on another machine (or not executable) and only available
through a HTTP interface, then just use fopen to open the address and read
the output from
If you are running them as commandline apps you can just pipe "|" the
output to another program
i.e. phpapp.php | perlapp.pl
That should work as long as you deal with the arguments properly...
On Tue, 2002-11-19 at 09:50, Kelly Meeks wrote:
> Is there any way to get a php script to grap the
At 18:04 19.11.2002, Adam spoke out and said:
[snip]
>Cheers for replying.
>
>I have the menu in place already, it is the PHP end i'm not sure about.
>Currently I have many php files which only differ in one line:
>$filename="file.xml";
>
>I want to be able t
How would I return an array of data with a function?
Robbert van Andel
"The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material. Any review, retransmission, dissemination or other use of, or
taking
At 18:23 19.11.2002, Van Andel, Robert spoke out and said:
[snip]
>How would I return an array of data with a function?
[snip]
// returns a copy of the array
function return_an_array() {
$a = array('oranges','apple
Does anyone know if the PHP SAPI modules are better in the newer releases?
Are they currently stable enough for production websites?
--
Chris Edwards
Web Application Developer
Outer Banks Internet, Inc.
252-441-6698
[EMAIL PROTECTED]
http://www.OuterBanksInternet.com
--
PHP General Mailing List
Thanks, but not sure if this is what i'm looking for
I just want to setup the PHP script so that the variable $filename can be changed via
a link such as 'index.php?filename="file.xml"',
causing the script to parse the appropriate file.
Adam.
- Original Message -
From: Ernest E
> Is it will increase the processing time when too many "include"
process in
> a
> program?
Well, each include() takes up time, so yes. It depends on what you're
including, though, as to how big of an impact it has on your program.
---John Holmes...
--
PHP General Mailing List (http://www.php
> How would I return an array of data with a function?
return $array;
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
is anyone running the isapi mod on iis? why does it ask for authenitcation
when I run a script?
--
Chris Edwards
Web Application Developer
Outer Banks Internet, Inc.
252-441-6698
[EMAIL PROTECTED]
http://www.OuterBanksInternet.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscrib
> Does anyone know if the PHP SAPI modules are better in the newer releases?
> Are they currently stable enough for production websites?
Better than..?
Where you/are you having problems with them currently?
I know many production win32 php environments.
--
PHP General Mailing
When will there be a new release of php?
With kind regards,
Richard Pijnenburg
Klik-on Internet Solutions
OS: RedHat 7.3
PHP: 4.3.0RC1 (sources)
IMAP: imap-2001a-10, imap-devel-2001a-10 (rpms)
Krb: pam_krb5-1.55-1, krbafs-devel-1.1.1-1, krbafs-1.1.1-1,
krb5-libs-1.2.4-3, krb5-devel-1.2.4-3 (rpms)
I get the following error-messages:
configure:34127: checking for crypt in -lcrypt
configur
At 19:10 19.11.2002, Adam said:
[snip]
>Thanks, but not sure if this is what i'm looking for
>
>I just want to setup the PHP script so that the variable $filename can be
>changed via a link such as 'index.php?filename="file.xml"',
>causing the script to
> -Original Message-
> From: Richard Pijnenburg [mailto:[EMAIL PROTECTED]]
> Sent: 19 November 2002 18:48
>
> When will there be a new release of php?
Well, http://www.php.net/ says:
[14-Nov-2002] PHP 4.3.0RC1 has been released. This is the first
release candidate and
So, er, s
At 19:37 19.11.2002, Chris Edwards said:
[snip]
>is anyone running the isapi mod on iis? why does it ask for authenitcation
>when I run a script?
[snip]
From the docs (http://www.php.net/manual/en/features.http-auth
I think there is a PHP release mailing list, that should keep you in the loop,
or check php.net. The news is usually fresh there.
-Brad
> When will there be a new release of php?
>
> With kind regards,
>
> Richard Pijnenburg
> Klik-on Internet Solutions
>
>
--
PHP General Mailing L
Many thanks for your reply, I will add the bugs site to my list of
things to search before posting here!
As I am putting the code onto a number of servers where I can't control
the PHP settings, I will need to devise a work around. Good to know
it's not my poor coding.
Phoebe.
Mike Ford wrote
here's an example of a text file I need to read...
abcd|test1|morevalues|otherstuff
efghijklm|a;kd;laskf;alskdjf;alskdf;askldjasldkf|;askd;lakjl;asdf|al;sdjf;alf
I believe each line is seperated by a carriage return.
How can I read this in one line at a time in to a variable?
I'm assuming t
1 - 100 of 162 matches
Mail list logo