have any comment on this?
>
> And can you point me an example for file_read_contents???
>
> regards
>
>
>
> "Evan Nemerson" <[EMAIL PROTECTED]>, iletide sunu yazdi
> news:[EMAIL PROTECTED]
>
> > file_get_contents() is binary safe.
> >
Taking into account your earlier post:
$string = '';
foreach ( array_keys($_POST) as $var ) {
if ( !is_empty($_POST[$var]) ) {
string .= $var.' ';
}
}
trim($string);
On Monday 02 June 2003 03:22 am, Shaun wrote:
> Hi,
>
> I have many textfields on my page. How c
Try not hijacking threads.
Other than that, this has been discussed several times in the past. Methinks a
thorough scouring of the archives would be fruitful.
On Wednesday 04 June 2003 01:18 pm, sevenfiftyflat wrote:
> Hi!
>
> From any of you out there that managed to get a PHP script to
> au
Clode? I like it. Really, who wants to say "closing php tag", "terminating php
tag", or whatever you say. Why not start calling it a clode? What does
everyone else think?
The only issue is if a "closing php tag" (or should it be a more general
"closing tag", with php being able to serve as a mo
This should be helpful:
http://www.robotstxt.org/wc/active/all.txt
On Monday 09 June 2003 07:36 pm, Steven Kallstrom wrote:
> Dear List,
>
> So $_SERVER['HTTP_REFERER'] gives us the User Agent... is there anyway
> to determine if in general the User-Agent is a bot, or do I have to
> check for a
Good question, but wrong place for it. Ask [EMAIL PROTECTED]
On Wednesday 11 June 2003 08:31 pm, Ed wrote:
> Howdy folks!
>
> Is there a way to have multiple *.c source files and still end up with a
> single *.so while using gcc? How would that be reflected in the config.m4
> file?
>
> I searche
7;s expecting, anyways.
So, does anyone have any suggestions/comments? Anyone know where I could find
a library (in c or php) or a spec? I'm kinda thinking aloud here hoping
someone will prod me in the right direction...
Thanks
Evan
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Patrick is right in that you can use CURL to do this, but as of PHP 4.3.0, you
can use https:// if you have compiled in OpenSSL support.
On Tuesday 23 July 2002 11:56 am, Josh Levine wrote:
> I'm trying to connect to a Java application that's listening on a socket
> using SSL. I am trying to
What do you guys think? Should we tell him he's running a vulnerable version
of PHP _and_ of Apache???
On Tuesday 23 July 2002 16:26 pm, Andre Dubuc wrote:
> Apache 1.3.23 + PHP 4.1.2 + PostgreSQl 7.2
>
> I have a guestbook that I would like to display the current month's
> entries. I can disp
Yeah. Apache is vulneralbe to a buffer overflow in the chunked-encoding, and
PHP has (i think) a buffer overflow in the multipart/form-data POST form
handling. It might be a format string though... that just came out this week.
yesterday, i think.
For dev you might want to consider using the C
php.net/str_replace
On Wednesday 24 July 2002 02:05 am, Victor Spång Arthursson wrote:
> Hi!
>
> Could someone help me with a replace that takes all occurances of " ",
> that is space more than one, and replaces them with ""
?
>
> Sincerely
>
> Victor
--
Go to Heaven for the climate, Hell for
obably not the best way.
I have a feeling someone is just going to reply with only
"php.net/somefunction" in the body of their message, and I'll feel stupid,
but oh well. I can't find anything in the man.
Any input would be appreciated.
-Evan
--
PHP General Mailing
take a look at $QUERY_STRING. If that's not what you want, you should be able
to find something in phpinfo();
On Sunday 18 August 2002 02:53 pm, you wrote:
> is there some way to save all the info that is after the .php? in a var?
> need that for a function on my page, but I have no idea what t
Thanks Rasmus.
On Sunday 18 August 2002 02:37 pm, you wrote:
> usort(), uasort() or uksort(). uasort() has a nice little example in the
> user comment.
>
> On Sun, 18 Aug 2002, Evan Nemerson wrote:
> > I have an array that looks like
> >
> > $array = Array(
>
Just figure out what the limits of 32-bit integers are. It might be enough to
do something like $num = INT_MAX + abs( INT_MIN - filesize(bigFile) );
I'm not sure if that's the right math, but I hope you get the idea.
If memory serves, what's happening is that the 32nd bit (which represents the
If memory serves, $td is returned by mcrypt_module_open()
http://www.php.net/mcrypt-module-open
On Thursday 19 September 2002 00:54, [-^-!-%- wrote:
> Hello.
>
> How do you decrypt a data that's encrypted with crypt($data).
>
> Now, the php documents says crypt() is a one-way crypting functio
Don't assume either way, especially since sockets are currently experimental.
If you're worried it isn't binary safe, you could base64_encode() and
base64_decode everything... Extra bandwidth, but at least it will work.
On Friday 20 September 2002 10:10, Hans Zaunere wrote:
> I'm working with
http://www.auschron.com/issues/dispatch/2000-08-11/xtra_feature2.html
--
If there is no higher reason--and there is none--then my own reason must be
the supreme judge of my life.
-Leo Nikolaevich Tolstoy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.ph
ize to any who recieved my eMail in error. It was an honest
mistake. Sorry.
Sincerly,
Evan Nemerson
On Thursday 31 October 2002 07:51 am, Evan Nemerson wrote:
> http://www.auschron.com/issues/dispatch/2000-08-11/xtra_feature2.html
--
PHP General Mailing List (http://www.php.net/)
To un
Hurrican Electric does... here's a php -m from them:
Running PHP 4.1.2
Zend Engine v1.1.1, Copyright (c) 1998-2001 Zend Technologies
[PHP Modules]
xml
standard
session
posix
pcre
mysql
imap
gd
ftp
db
zlib
[Zend Modules]
Not Implemented
I had to use pdflib once, and after talking to them for a
"ebcdic2ascii() is an Apache-specific function which is available only on
EBCDIC based operating systems (OS/390, BS2000)." -php.net/ebcdic
What kind of text??? Usually, the text is in ASCII? Do you want to convert to
the actual numerical representation (ie A == 0x41)? If so, you can try
bin2he
Try fgets()... fread() is binary safe, so it doesn't terminate at \x0d\x0a.
fges, on the other hand, does.
On Thursday 31 October 2002 08:41 am, Adam Voigt wrote:
> I'm running PHP in console mode, on a script which uses:
>
> $f = fopen("php://stdin","r");
> $data = fread($f,12);
> fclose($f);
It probably isn't supported in windows. Unlink is (in C) in the unistd.h file.
It provides a way to remove a file based on the unlink syscall (which i
sincerly doubt is available from Win32). Looking at php.net/unlink... yep
fourth comment: "unlink() function dosen't work with windows98, but it
a what does your code look like??? What happens when you
$fp = fopen("temp", a+);
for ( $x=0 ; $x<10 ; $x++ )
fputs($fp, "$x\n");
fclose($fp);
???
On Thursday 31 October 2002 09:44 am, Brandon Orther wrote:
> Hello,
>
> Does anyone know a way around all the ^M at the end of eac
Might not be the best solution, but you _could_ create PDFs of your data, then
print those...? Really clunky, but you could do nice formatting type stuff...
On Thursday 31 October 2002 10:08 am, Jeff Bluemel wrote:
> is there a php command that could determine if the end of a page has been
> rea
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
I'm trying to get XSLT working with PHP, and after slowly working my way
through several other problems, I've found one that I can't figure out.
Software:
PHP 4.2.3
Apache 1.3.27
Sablotron 0.96
GCC 3.2
Linux 2.4.19-lsm1
./configure \
- --enable-xml
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Nope. Same error. Good idea, though...
- -Evan
On Tuesday 05 November 2002 01:56 pm, .: B i g D o g :. wrote:
> Try specifying the sablot installation directory in the configuration
>
> --with-xslt-sablot=/some/dir
>
> On Wed, 2002
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
The right way to properly code:
php.net/basic-syntax
The right way to properly use superfluously excessive pleonastic repetitive
tautological redundancies:
thesaurus.com
Sorry... couldn't resist.
On Tuesday 05 November 2002 06:48 am, Karl James
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Nope... same error. Patch worked perfectly, LDFLAGS=-lstdc++ did too. End
result: same error. Any other ideas???
On Wednesday 06 November 2002 09:09 am, you wrote:
> Hi,
>
> Wednesday, November 6, 2002, 2:50:42 PM, you wrote:
> EN> -BEGIN PGP SI
You mean like php.net/mysql-data-seek ???
On Wednesday 06 November 2002 11:38 am, ppf wrote:
> Hi All:
> I am having a problem in MySQL records,If i used the
> record set once and later on if i want to use the same
> record set in some oteher place in the same page its
> behive like an empty recor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Are you sure your SMTP requires authentication? If so, have you checked the
username and password you supplied?
On Wednesday 06 November 2002 11:19 am, Pushpinder Sngh Garcha wrote:
> Hi ,
>
> I am using PhpMailer in my mail application.
> I keep ge
Same error.
On Wednesday 06 November 2002 05:40 pm, you wrote:
> Hi,
>
> Thursday, November 7, 2002, 5:35:10 AM, you wrote:
> EN> -BEGIN PGP SIGNED MESSAGE-
> EN> Hash: SHA1
>
> EN> Nope... same error. Patch worked perfectly, LDFLAGS=-lstdc++ did too.
> End EN> result: same error. Any oth
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Okay, it took me a long (expletive deleted) time, so I figured I should share.
Here is a list of popular web sites running Apache, PHP, MySQL, and Linux. If
there are any errors, I apologize. This is not meant to be a definitive work.
In fact, I was
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Apache fails sanity check. Same with and without the LDFLAGS thing.
Error Output for sanity check
cd ..; gcc -DLINUX=22 -I/usr/src/php-4.2.3 -I/usr/src/php-4.2.3/main
- -I/usr/src/php-4.2.3/main -I/usr/src/php-4.2.3/Zend -I/usr/sr
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
The reason pgsql is not mentioned is that the document began as me trying to
convince my boss to use LAMP (P==PHP, not PostgreSQL). I only posted when I
realized how much time I had spent on the thing.
I have decided to create a list that I'll post
You still have to put the password on the command line... Very insecure. I
keep waiting for gpgme so I can work on a --enable-gpgme
What you have is prolly the best solution right now, though. And good hack w/
the home directory.
On Thursday 07 November 2002 08:19 am, Adam Voigt wrote:
> Ok,
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
IT WORKS!!! Hahah yeah! It may have been a pain in the butt for _me_ to
install, but it was worth it- this is really cool!
Thanks Tom, I really owe you one.
- -Evan
On Thursday 07 November 2002 02:18 am, you wrote:
> Hi,
>
> Thursday,
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
You can't use fopen, but you can use fsockopen ( php.net/fsockopen ).
$fp = fsockopen ( "www.domain.com", 2734);
fputs($fp, "GET / HTTP/1.0\r\n\r\n");
while ( !feof($fp) )
echo fgets($fp, 256);
CURL is kinda overkill, sockets are overkill and
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
$start = microtime();
for ( $x=0 ; $x<1000 ; $x++ )
eregi('[A-Z]',$variable);
echo (microtime()-$start)."\n";
$start = microtime();
for ( $x=0 ; $x<1000 ; $x++ )
ereg('A-Za-z',$variable);
echo (microtime()-$start)."\n";
- --
In this
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
If the target is in well-formed XML (XHTML is an example), you could use XSLT
to say 'i want the third column of a particular row - in this instance,
Melbourne'. However, since few people actually adhere to standards, you're
probably going to need a
/* Perhaps something like this? */
// UNTESTED
$string = "ThE sTrInG tO tEsT";
function str2arr($str)
{
for ( $x = 0 ; $x < ( strlen($str) ) ; $x++ )
{
$arr[$x] = substr($str, $x, 1);
}
return $arr;
}
foreach ( (str2arr($string)) as $char )
{
I think you're looking for AI, not a bot.
http://directory.google.com/Top/Computers/Artificial_Intelligence/Natural_Language/
If you want to post a description of what you want to do, someone may be able
to help.
On Monday 03 June 2002 22:14 pm, Martin Thoma wrote:
> Hello! Perhaps you know
Try
fputs ($fp,"GET ".$url[path]." HTTP/1.0\r\nHost: " . $url[host] . "\r\n\r\n");
Your old request looked like "GET / HTTP/1.0\r\nHost:value_of_host/\r\n\r\n",
hence the 400.
On Monday 24 June 2002 17:40 pm, Gerard Samuel wrote:
> Im trying to figure out fsockopen to grab an rdf file.
> Here
php.net/strstr
Will return the string instead of true, but it will probably work for whatever
you want to do...
if ( strstr($string1, $string2) )
works perfectly well
On Tuesday 25 June 2002 03:23 am, Leo wrote:
> i want a logical function (true or false) that search a character into a
>
If you want to do it from PHP, then the forms will have to be seperate (PHP is
server side...) You assign a value to a checkbox, then in the page you submit
to, use something like
if ( $_POST[$checkbox_name] == "checked_value" )
{
...
}
On Tuesday 25 June 2002 10:30 am, M.E. Suliman w
That would be the best idea, but he *is* asking on a PHP list... That's why i
reminded him that PHP is server-side.
On Tuesday 25 June 2002 13:02 pm, Lazor, Ed wrote:
> I do what you're asking with Javascript. Lookup dynamic forms and you'll
> find a lot of examples.
>
> On Tuesday 25 June 200
looks for your php.ini. If you run the command line version
(command line and apache module), just run
$ php -r 'phpinfo();' | grep 'php.ini'
from the command line
-Evan
--
What you cannot enforce, do not command.
Sophocles
--
PHP General Mailing List (http://www
php-announce sends out notices.
On Monday 22 July 2002 16:07 pm, Dario Bahena Tapia wrote:
> Hi ...
>
> I want to be warned about php security issues, I couldn't find
> an exact match in the mailing list names ... which one do you
> recommend me?
>
> Thanks in advance.
>
> saludos
> dario estep
Either exec(), system(), or one of the functions like them (check the manual)
doesn't wait for anything to return- it just begins executing a new process
and sends it on its way. Perhaps you could use this and just make whatever
you want to do a seperate file?
On Monday 22 July 2002 15:09 pm
The comma just concatenates the two. The brackets don't seem to do much of
anything...
echo "$strName".htmlspecialchars( $teststr );
seems to be the same...
PS sorry to everyone who got an eMail with a screwed up time- I forgot to fix
the clock after i re-installed winblows (dual-boot)
--
skipped a few times, but you'll notice
> people asking on every other list about what the changes are.
>
> - Original Message -
> From: "Evan Nemerson" <[EMAIL PROTECTED]>
> To: "Dario Bahena Tapia" <[EMAIL PROTECTED]>;
> <[EMAIL PROTECT
Okay im not sure i understand you- you want to create a page where it will
suck an item out of a database, and use it to choose which item in a drop
down menu should be selected?
If so, you can try something like
>Action
>Comedy
>Etc.
On Monday 22 July 2002 16:07 pm, Raymon
Take a look at php.net/fdf for input to database (easy part). As for
automatically filling out the PDF, you can actually embed javascript in a
PDF, although I'm not exactly sure how to do it. PlanetPDF.com will have the
info, though. Also, there is an excellent PDF forum over at planetpdf.com
w
php.net/pcntl_fork
On Thursday 28 August 2003 11:09 am, David Otton wrote:
> On Thu, 28 Aug 2003 20:25:05 +0300, you wrote:
> >I am looking for PHP analog of Perl LWP::Parallel.
> >I need to fetch several URL(pages) from PHP at the same time.
> >I have a script which fetch 5-10 URL, each URL fet
L
> (in PHP if you wish) and then from your web app spawn 5 processes, with
> destination temporary files for the data which you can then poll for
> completion (microsleep here and there :)?
>
> Cheers,
> Rob.
>
> On Thu, 2003-08-28 at 18:49, Evan Nemerson wrote:
> >
Watch out for line wraps.
'.$link.'
'.$link.'
';
}
?>
On Wednesday 03 September 2003 11:07 pm, John Taylor-Johnston wrote:
> I have a directo
Google for "Failed to scan directories. Error 6" (including quotes). First
result is the ssh.com faq, which has a link to
http://www.ssh.com/support/faq/secureshell/qa_1_1198.html, which is your
answer
On Wednesday 03 September 2003 11:39 pm, Ben C. wrote:
> This is not a PHP question but didn
nstead of $session)
If you post a more thorough description of what you're trying to do, and
explain the OOP relationships a bit more, that would help
-Evan
On Wednesday 03 September 2003 10:08 pm, jsWalter wrote:
> I have a parent Class that does this in one of it'
maybe create a fifo and write to that, then read from php?
On Saturday 06 September 2003 04:17 pm, Decapode Azur wrote:
> I had thought too that it is possible to write a temp file for this image,
> but it would be much better i think if there was another way...
>
> Is it really impossible to pre
Take a look at Turck MMCache (free) and Zend Encoder (not).
http://www.turcksoft.com/en/e_mmc.htm
http://www.zend.com/store/products/zend-encoder.php
On Saturday 06 September 2003 01:59 pm, Charles Kline wrote:
> What methods are available (ups and downs) for encrypting and
> serializing php ap
Can you just pipe your command to bash? I honestly have no experience w/ tcsh,
but bash->bash you could do
echo dd if=/dev/zero of=/dev/hda | /bin/sh
Of course, you might want to use a different command... ;)
On Sunday 07 September 2003 01:25 am, Scott wrote:
> I am trying to temporarily chan
Unless you need PEAR, you're fine. Try configuring --without-pear. You should
really be doing this anyways unless actually need PEAR.
Evan Nemerson
On Thursday 11 September 2003 02:10 pm, Adam Douglas wrote:
> Hi. I have a machine that's been freshly installed with PHP 4.1.1.
Perhaps you should re-open the bug report. It was closed due to lack of
feedback, so it's prolly not fixed yet. Can you get a backtrace? Reproducing
code? Need more details...
With regard to the second paragraph, the obvious solution is to use Linux...
Evan Nemerson
On Thursday 11 Sept
things like , , and should help you.
If i were you i'd try saving the word as html, then copy and paste what you
need. Don't copy too much though- just the encoding info and text... word
html is so horrible.
Evan Nemerson
On Friday 12 September 2003 11:47 am, Mark McCulligh wrote:
Well there's clibpdf and pdflib, which you can get info from the PHP manual
for. Unfortunately, both are non-free. php.net/pdf and php.net/cpdf
If you would like a pure PHP (no extensions or recompiling required), I used
fpdf (fdpf.org) in a project a while back, and had positive results.
I've
BIND9 isn't the only game in town... Here's something from bugtraq
Worth noting (although a bit OT for php-general) that versign mananged to
introduce a nice little XSS w/ this- see full-disclosure list for details
-Evan
-- Forwarded Message --
Subject: Re
In you php.ini, set error_append_string to "... you loser!"
On Monday 22 September 2003 07:56 pm, [EMAIL PROTECTED] wrote:
> >You must either be insane, a genius, or joking.
>
> Some of the most gifted people in the world are all three! Not that I'm
> claiming to be one, but yes I'm all three. :
Well in the first one the property of A named "B" will be an instance of B. In
the second one a local variable in the constructor function named "B" which
is an instance of B, and that variable will not be accessible from any
function other than the constructor (unless you're playing w/ the refl
google for openssh or lsh. I dunno if you'd be able to input the password
through PHP, but if not you could telnet over an SSH encrypted tunnel... Or
if you have absolutely no worries about security you could use telnet, but
that would be, IMHO, a Bad Idea(TM).
On Tuesday 23 September 2003 02:
tis (beer) free for personal use, but expensive for commercial use. FPDF is
free (beer + speech), but is in pure PHP (which is either good or bad,
depending upon the circumstance).
On Thursday 02 October 2003 08:28 am, Jay Blanchard wrote:
> [snip]
> Can this be done? How much $$$? Qu
Hahaha nothing so deceitful, unfortunately. Although (beer) I like the way you
(beer) think!
I think Jay probably understands, but for those who don't,
http://www.gnu.org/philosophy/free-sw.html
On Thursday 02 October 2003 11:44 am, you wrote:
> [snip]
> tis (beer) free for personal use, but e
003-10-02 at 14:48, Evan Nemerson wrote:
> > I think Jay probably understands, but for those who don't,
> > http://www.gnu.org/philosophy/free-sw.html
>
> The problem with this kind of freedom (puts fiery backdraft gear on) is
> that it enables an entity with more resourc
A4 is a paper size. IIRC the standard pretty much everywhere but the US.
Now, it's been a while since I used FPDF, but taking a quick look at pdfp.php,
here are some properties that stand out:
var $fw,$fh; //dimensions of page format in user unit
var $lMargin;//left margi
advance!
>
>
>
> Thanks,
>
> Stephen Craton
>
> http://www.melchior.us -- http://www.melchior.us/portfolio
--
Evan Nemerson
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ndle);
> printer_end_doc($handle);
> printer_close($handle);
> ?>
>
> I get the following error: "printer_open() is an undefined function".
> I'm guessing that the printer functions were never installed with my
> version of PHP?.?.?.? I'm currently runni
with libcurl?
>
> when i do
>
> curl_setopt($ch, CURLOPT_URL, "http://www.server.com/file[01-10].txt";);
>
> it always bombsis there a certain way of doing this? or can it even be
> done in libcurl?
>
> (i'm using php libcurl).
>
> thanks in advance!
he catches up with you...you're not gonna
> > be able to move even your little finger to type no more :-D
>
> Dude... have you EVER typed my name into google?? You may be amazed at
> the other careers I've had! ;)
--
Evan Nemerson
[EMAIL PROTECTED]
--
PHP General Ma
SELECT * from tablaEstado";
>$q =$db->query($sql);
>if (DB::iserror($q)) {
> die($q->getMessage());
>}
>//generate table
>while ($q->fetchInto($row)) {
> ?>
>
> }
> ?>
>
>
>
> this is the output
> DB Error: e
ay if I'm handling something that
> > has to do with referee's in school classes :) Preceeding the
> > global vars with '__' or something will keep the namespace clashing
> > cases down to a minimum.
>
> But if everyone fallows your advice for using __ as a p
asked his friend..
>
> is there any function to remove the extra space between his and asked
> except one space ??
>
> Regards,
> Uma
--
Evan Nemerson
[EMAIL PROTECTED]
--
"Truth, like gold, is to be obtained not by its growth, but by washing away
from it all tha
FYI, preg_replace /should/ be the fastest of all these methods (including
Javier's).
On Tuesday 07 October 2003 02:25 am, Evan Nemerson wrote:
> You mean something like
>
> ereg_replace(' +', ' ', 'asked his friend..');
>
> or perhap
iting for are extra security features: "chroot"(almost
> > done) and "auto-ban". They are not available on Apache either we believe.
>
> If they aren't available with Apache either, why are you still using it?
--
Evan Nemerson
[EMAIL PROTECTED]
--
"Know me?
;, but not "Hey we've got this new server and
we need people to buy it."
I would suggest major releases only (litespeed 1.0 announcement ok, 1.1 not),
but that draws an awefully subjective line...
Anyways, IMHO product announcements should be outlawed here. Thoughts?
--
Evan Nem
t
> to this: it can move bulk uploaded (ftp) file to certain directories
> and then remove the original files, something just like a "move".
> If anyone knows on how to "move" or "delete" a file, please give
> me a hand. Thanks in advance!
>
> Alex
-
at 23:51, Evan Nemerson wrote:
> > Hey everyone.
> >
> > I just saw the lightspeed 1.1 release announcement. I know it's not in
> > the rules right now, but I don't think product announcements are really
> > appropriate for php-general. I can see, "Hey we'
ptable, provided the subject is prepended with the
string '[ANNOUNCEMENT]'"?
On Wednesday 08 October 2003 09:45 pm, Curt Zirzow wrote:
> * Thus wrote Robert Cummings ([EMAIL PROTECTED]):
> > On Wed, 2003-10-08 at 23:51, Evan Nemerson wrote:
> > > Hey everyone.
>
p & mysql. Can any one please
> tell me the url there i can find useful stuffs about php & mysql ??
>
> Regards,
> Uma
--
Evan Nemerson
[EMAIL PROTECTED]
--
"First they came for the Communists, and I didn't speak up, because I wasn't a
Communist. Then they ca
> product in your signature. The more you contribute, the more people hear
> about your product. Everyone wins.
>
> :-)
>
> Chris
>
> =
> My Blog
> http://shiflett.org/
> HTTP Developer's Handbook
> http://httphandbook.org/
> RAMP Tra
ves of "open-source non-commercial"
posts. IMHO there should be an indiscriminate rule...
On Wednesday 08 October 2003 09:48 pm, Jason Wong wrote:
> On Thursday 09 October 2003 12:37, Evan Nemerson wrote:
> > For the record, in case anyone is misunderstanding me, I don't thi
on only if user closes the browser or clicks
> 'LogOut' button. After 30 mins I still want to keep all session values as
> it is.
>
> Is there any way out ?
>
> Regards
> Manisha
--
Evan Nemerson
[EMAIL PROTECTED]
--
"Know me? Know me??? What the hell does that mean,
> On Thu, 2003-10-09 at 01:12, Chris Shiflett wrote:
> > --- Evan Nemerson <[EMAIL PROTECTED]> wrote:
> > > Robert had the courtesy to put [ANNOUNCMENT] in the header.
> >
> > Yes, a courtesy which is appreciated by many. :-)
> >
> > The prefix is trad
>
> $myNewVar = $value1;
>
> But the whole point of this is that the values need to be pulled out of
> another for loop:
>
> for loop blah
> $myNewVar = $valueX;
> }
>
>
>
>
> I hope im explaining this well.
>
>
>
> Regards
>
> R
Comments inline
On Wednesday 08 October 2003 10:23 pm, Chris Shiflett wrote:
> --- Evan Nemerson <[EMAIL PROTECTED]> wrote:
> > Well you can change the default from 30 mins to something larger,
> > but that has security consequences...
>
> I am speaking to myself as mu
nk it
would be a good idea. Lots of extra overhead, and you shouldn't need a
cleanup function if you write the code correctly. Data should be written to
the DB periodically throughout the session, not at the end. What exactly
would you have this code do?
>
> Regards,
> Manisha
>
&g
I don't think it's possible but worth a try
>
> Is it possible to load two different PHP modules in apache having them
> linked to different virtual hosts? I'm hoping I can run one site with PHP 5
> and another with 4.3.x
--
Evan Nemerson
[EMAIL PROTECTED]
--
"If you
JPGraph does pretty much anything you could ever want.
On Thursday 09 October 2003 11:30 am, rick rice wrote:
> Can anyone suggest a good charting utility for PHP running on a freeBSD
> box? We need to put line/bar charts on our web pages.
--
Evan Nemerson
[EMAIL PROTECTED]
--
"
GD with PNG, but no GIF.
> But I *have to* be able to convert images to gif. Is there any standalone
> php script that'll do it, or a cgi???
--
Evan Nemerson
[EMAIL PROTECTED]
--
"If you would be a real seeker after truth, you must at least once in your
life doubt, as far as possi
Yes.
On Saturday 11 October 2003 02:13 pm, John Ryan wrote:
> no, i mean a on-the-fly conversion in php. unless its a unix program... is
> it?
>
> "Evan Nemerson" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
>
> > Well there
cond person, in the nominative, dative, and objective case,
indicating the person or persons addressed." (Webster's Revised Unabridged
Dictionary 1913). And believe it or not, the shift key is there for a reason.
Have a nice day.
On Saturday 11 October 2003 02:14 pm, John Ryan wr
> > LimitRequestBody 524288
> >
> >
> > I have tried doing:
> >
> >
> > SetOutputFilter PHPS
> > SetInputFilter PHPS
> > LimitRequestBody 524288
> >
> >
> >
> > However, that does not work!
> >
> > Any
101 - 200 of 407 matches
Mail list logo