Re: [PHP] Random Row From Database

2001-11-11 Thread Christian Reiniger
with this. So don't crosspost to there. (2) No, it shouldn't work "WHERE RAND ()" means "where some random number evaluates to true (i.e. is nonzero)" you want "ORDER BY RAND () LIMIT 1" -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/)

Re: [PHP] Append to STDIN

2001-11-09 Thread Christian Reiniger
On Friday 09 November 2001 05:16, Cleber S. Mori wrote: > Hi again... > > I had already RTFM... > Neither in exec or ``'s I found any thing about STDIN... Just a blind shot: $Data = escapeshellarg ($MyVariable); system ("echo $Data | myscript.py -param"); -- Christ

Re: [PHP] regular expression

2001-11-01 Thread Christian Reiniger
atch ('#^[^/]+$#', $SrcURI)) { return array ($SrcURI, '', $SrcURI); } elseif (preg_match ('#^(.*)/([^/]*)$#', $SrcURI, $matches)) { return array ($SrcURI, $mat

Re: [PHP] Quick array question

2001-10-31 Thread Christian Reiniger
you get (0 => 1, 1 => 2, 3 => 4, 4 => 5) if you want the keys "reordered" you could use array_values() on that.. -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) "Never doubt that a small group of thoughtful, committed people can change the world... Inde

Re: [PHP] parsing XML turorials, suggestions

2001-10-29 Thread Christian Reiniger
e best place to start? Does DOMXML have a future? Sure. But it's a bit overkill if you just want to read XML (sequentially). http://php.net/manual/en/ref.xml.html -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) This is JohnC IMHO, I compaired tri-word groupings here and

Re: [PHP] switch-statement overrides use of global arrays?

2001-10-29 Thread Christian Reiniger
array across *requests* That doesn't have *anything* to do with "global". Have a look at how HTTP works - each request is an isolated execution of a PHP script. it doesn't have any idea of what other pages the user already looked at. To archieve your stuff you n

Re: [PHP] HELP: Syntax Needed

2001-10-29 Thread Christian Reiniger
ord And unless you have a very weird setup this will always fail :) -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) This is JohnC IMHO, I compaired tri-word groupings here and in his plan and got a good match. - /. posting discussing the likelihood that an AC post that claimed t

Re: [PHP] HELP: Still Learning

2001-10-28 Thread Christian Reiniger
On Sunday 28 October 2001 07:18, jtjohnston wrote: > Still learning! But need syntax help. This works: > mysql_pconnect($host,"MyAccount","MyPassword"); > ... > This does not: > mysql_pconnect($host,"$MyTable","$MyPassword&quo

Re: [PHP] Include Precompiled C binaries

2001-10-28 Thread Christian Reiniger
On Friday 26 October 2001 22:32, Daelic wrote: > I was debating perl Vs. PHP with a friend, and he came up with this: > > "Perl can include compiled C binaries without backprocessing them, > which is a pretty useful trick." Ask him what he means with "backprocessing&qu

Re: [PHP] Arrays

2001-10-28 Thread Christian Reiniger
7; and '$page' which > should then be checked against the array: > > - if $section exists in the array [...] http://www.php.net/manual/en/ref.array.php -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) Drink wet cement. Get stoned. -- PHP General Mailing List (htt

Re: [PHP] Does unset() help performance?

2001-10-26 Thread Christian Reiniger
On Friday 26 October 2001 03:42, Julio Nobrega wrote: > If I unset variables/arrays/etc, that I will not use on my script > anymore, should I expect a performance increase? No. unless these variables use up so much memory that the system starts swapping. -- Christian Reinige

Re: [PHP] how many data can a session hold?

2001-10-25 Thread Christian Reiniger
old in the > session... Note: You should only store the session ID in the cookie and use this as a reference to the real data located e.g. in a database. -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) ...to paraphrase Churchill, while representative democracy may be terrible, it&

Re: [PHP] Re: Removing an Array Element

2001-10-25 Thread Christian Reiniger
uot; [0]=> string(4) "" } array(2) { [100]=> string(12) "jibberjabber" [200]=> string(16) "morejibberjabber" } -> index 0 is gone. -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) /* you are not expected to understand this */ - from the

Re: [PHP] is_int() and is_double

2001-10-25 Thread Christian Reiniger
number). is_int and is_double check whether the variable's current datatype actually is "int" or "double" See the manual. Possible solution: if (is_numeric ($a)) { $a = (double) $a; if (intval ($a) == $a) echo "'$a' is integer"; else echo &

Re: [PHP] Object sharing

2001-10-25 Thread Christian Reiniger
On Wednesday 24 October 2001 15:35, Victor Hugo Oliveira wrote: > Does anyone know a way to share an object with all sessions ? > The idea is to access the same database connection poll. poll or pool? if pool: simply use persistent connections -- Christian Reiniger LGDC Webmaster

Re: [PHP] talking directly w/ MySql

2001-10-25 Thread Christian Reiniger
. > > whenever I first run mysql_query() it tries to connect w/ default > connection settings. try adding the mysql_telepathy extension (seriously - how should the data get to and from mysql without a connection?) -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) /* you

Re: [PHP] How to protect MySQL password

2001-10-24 Thread Christian Reiniger
d php file using fopen(). Doesn't matter if that file Only if the host has safe_mode disabled or badly misconfigured. -> safe_mode, open_basedir in the config section of the manual -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) Very funny, Scotty! Now beam up my clot

Re: [PHP] preg_match_all...grrrr!!!

2001-10-23 Thread Christian Reiniger
te the "/" at the beginning, and "/i" at the end. those have always > been there in other projects, and have worked. Is there anything else > I'm doing wrong here? I dont get any errors, but it returns 0 matches. > =) The php manual contains a good documentation of preg

Re: [PHP] language question

2001-10-22 Thread Christian Reiniger
reach ($table as $key => $val) { ... } RTFM :) BTW: overwriting $a, $b in each iteration isn't particularly useful... -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) Those who will not reason, are bigots, those who cannot, are fools, and those who dare not, are slav

Re: [PHP] sscanf() question...

2001-10-19 Thread Christian Reiniger
On Wednesday 17 October 2001 23:25, Uchendu Nwachukwu wrote: > I am trying to write a script to convert a MySQL timestamp > (MMDDhhmmss) to a unix timestamp. SELECT UNIX_TIMESTAMP(timefield) AS MyTime FROM xy -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) "Th

Re: [PHP] handling errors

2001-09-27 Thread Christian Reiniger
. So... in that case... Don't use @, but check the syntax of > the variable you want to pass as parameter for getImageSize. According to my docs (08 Sep 2001) it can. And http://php.net/getimagesize says the same.. -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) REALITY.S

Re: [PHP] handling errors

2001-09-27 Thread Christian Reiniger
ones), like the one shown above, where errors are unavoidable and normal. For these cases the @ operator is the right thing. Generally you're right though - error reporting should be set to E_ALL and reasons of avoidable errors/warnings should be eliminated. -- Christian Reiniger LGDC Webma

Re: [PHP] speechmarks

2001-09-26 Thread Christian Reiniger
On Wednesday 26 September 2001 01:07, Andrew Austin wrote: > What is the method for mySQL to surround single speechmarks as in > (don't) so it will be accepted in an SQL statement. http://php.net/addslashes -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) Error 032

Re: [PHP] Feature?

2001-09-25 Thread Christian Reiniger
ar2'=>10); > I want to pass value to only one or more but not to all params. Also > this will make the code clearer I think. Comments are welcome! You can emulate this with arrays: $bar = foo (array ('par2' => 10)); -- Christian Reiniger LGDC Webmaster (http://lgdc.suns

Re: [PHP] 404 error

2001-09-24 Thread Christian Reiniger
ends back an html page with the error on, so > Apache thinks it has found the page. At least that's what happens on > our server. Am I missing something in Apache that will tell the server > to check a file exits before it sends the request to the server? Check your ErrorDocument claus

Re: [PHP] Assistance Please - Two-Dimension Arrays

2001-09-24 Thread Christian Reiniger
doesn't even have single-dimensional arrays (because all arrays are associative). -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) Results 1 - 10 of about 201,000,000. Search took 0.08 seconds - http://www.google.com/search?q=e -- PHP General Mailing List (http://www.php.ne

Re: [PHP] 404 error

2001-09-24 Thread Christian Reiniger
ems to work after the parser has got the file for parsing. Simple :) You tell apache to serve, say, 404.php on a 404, and in *that* file you place the code :) If you want to send a 404 from an existing php file, do a header ('HTTP/1.0 404 Not Found'); include ("404.php"); e

Re: [PHP] 404 error

2001-09-23 Thread Christian Reiniger
On Sunday 23 September 2001 20:46, Richard Baskett wrote: > I don't think I said it clear enough :) Sorry abou that. This is what > I did: > > echo "Page with error: $HTTP_REFERER"; > echo "Error Link: $PHP_SELF"; > ?> Try $REQUEST_UR

Re: [PHP] Assistance Please - Two-Dimension Arrays

2001-09-23 Thread Christian Reiniger
ement01","element02"); > $myarray[1] = array("element10", "element11","element12"); > $myarray[2] = array("element20", "element21","element22"); > > You would refrence "element11" by > $myarray[1][1]; Congrat

Re: [PHP] Search in Progress

2001-09-23 Thread Christian Reiniger
e and look at the info in the upper right corner of the page. That's how a search should work :) -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) "These are the people who proudly call themselves "hackers" -- not as the term is now abused by journalists to mean

Re: [PHP] PHP vs M$.NET C#?

2001-09-19 Thread Christian Reiniger
re's nothing new / innovative in C# -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) REALITY.SYS corrupted ... reboot Universe [Y,n]? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: [PHP] Can someone help me parse XML? - Challenge

2001-09-18 Thread Christian Reiniger
in PHP. The perl file looked like this: http://php.net/manual/en/ref.xml.php -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) I sat laughing snidely into my notebook until they showed me a PC running Linux. And oh! It was as though the heavens opened and God handed down a clien

Re: [PHP] R: equivelant of ASP's #include file?

2001-09-14 Thread Christian Reiniger
, while include could handle variable ones. What you mean is include_once() and require_once() > readfile("filename.ext"); read filename.ext and print it to the output, > don't parse it. -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) I saw God - an

Re: [PHP] Stripslashes question.

2001-09-11 Thread Christian Reiniger
On Monday 10 September 2001 23:57, Sean C. McCarthy wrote: > Hi, > > Didn't help. I tried it before that is why I tried with addcslashes. Not addcslashes. addslashes. Note the missing "c" -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) Nothing is more d

Re: [PHP] Sterilize user input function

2001-09-09 Thread Christian Reiniger
mean http://php.net/addslashes I suppose. Also read through the config section (magic_quotes_*) -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) The most exciting phrase to hear in science, the one that heralds new discoveries, is not "Eureka", but "That's funny..."

Re: [PHP] Releasing Your Code

2001-09-07 Thread Christian Reiniger
) > 11) MySQL Question: When having people install your PHP app and it > needs its own MySQL database with custom table structure, what is the > best instructions to tell idiots how to do it? Give 'em a sql script to execute. mysqldump --add-drop-table --no-data dbname >dbname.s

Re: [PHP] 304 Not Modified

2001-09-06 Thread Christian Reiniger
$last_access) > > > { > > > header("304 Not Modified); > > > exit; > > > } > > > else > > > { > > > /* code genertating the new page */ > > > } -- Christian Reiniger LGDC Webmaster (http://lg

Re: [PHP] 304 Not Modified

2001-09-06 Thread Christian Reiniger
page, else I see a new page > (correct behaviour). > Why I always get a blank page and not the cached page? (see other responses) -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) /* you are not expected to understand this */ - from the UNIX V6 kernel source * License

Re: [PHP] The future of PHP

2001-09-01 Thread Christian Reiniger
this... (3) http://php.net/usage.php Period. Marketing really isn't the most important thing to do :) Conclusion: PHP's future looks bright, everyone is working hard to make it even brighter, and we all can dance happily around on the flowery meadows (except when working of course :

Re: [PHP] fgets

2001-08-30 Thread Christian Reiniger
ot;); // or image/png > // ALL GOOD - SEND IT TO THE BROWSER > fpassthru( $im ); > } > fclose( $im ); -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) CPU not found. retry, abort, ignore? -- PHP General Mailing List (http://www.php.net/) To uns

Re: Re: [PHP] script preprocessor?

2001-08-30 Thread Christian Reiniger
. if (FOOBAR == 42) { include ("code1.php"); } else { include ("code2.php"); } -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) CPU not found. retry, abort, ignore? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECT

Re: [PHP] script preprocessor?

2001-08-29 Thread Christian Reiniger
and replacement of an error handler function ("sgError ($Msg)" => "MyError (__FILE__, __LINE__, $Msg)") Written for Linux, needs GNU NANA (http://wattle.cs.ntu.edu.au/homepages/pjm/nana-home/) and expat (http://www.jclark.com/xml/expat.html). I can send you a copy of th

Re: [PHP] sizeof(int)

2001-08-27 Thread Christian Reiniger
on that platform. Typically that's 32 or 64 bits > I need a 16 bit (2 byte) storage unit (I use a lot of bitwise > operations) Should be trivial to use larger ints for that. -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) The most exciting phrase to hear in scien

Re: [PHP] HTTP headers and include()

2001-08-23 Thread Christian Reiniger
e the > two test files I've been using to try to solve this.. (sans the > if( headers_sent ) { > $senthdrs = "Headers Sent"; > } else { > $senthdrs = "Headers not sent"; > } does it make a difference if you use the proper function call syntax

Re: [PHP] Script timeout

2001-08-23 Thread Christian Reiniger
P timeout, i.e. either Apache or the browser is getting bored. Try outputting something from time to time. -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) Install once, run forever. Linux. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: [PHP] How can I insert the data into the begining of a text file

2001-08-23 Thread Christian Reiniger
( $fp ); > > "Niklas lampén" <[EMAIL PROTECTED]> ? > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > > Use $fp = fopen($file, "r+"); -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) Install once, run forever. Linux. -- PHP G

Re: [PHP] Strings with Spaces in URLS

2001-08-22 Thread Christian Reiniger
t all words after the first space. http://php.net/urlencode http://php.net/rawurlencode -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) The use of COBOL cripples the mind; its teaching should, therefore, be regarded as a criminal offence. - Edsger W. Dijkstra -- PHP General Mailing Li

Re: [PHP] Need "Working..." pop up dialog (repost)

2001-08-21 Thread Christian Reiniger
$execretval); Uncompressing should not take that much time. And you can speed it up by using the zlib functions instead of a exec (gunzip ...) http://php.net/gzopen Also, if the file to be uncompressed is very large, you should cache the results (the generated plots). -- Christian Reini

Re: [PHP] header function

2001-08-21 Thread Christian Reiniger
er ("Location: http://your.server.us/index.php";); > and have it hit the header() line and i get teh 404 page error.. (and A 404 can't come from parse errors or something. It *does* redirect you, but doesn't find the target file -> 404 -- Christian Reiniger LGDC Webmas

Re: [PHP] Classes and performance bottlenecks

2001-08-14 Thread Christian Reiniger
I disagree. Aftre the first access the data will be in the filesystem cache, so the reading is only a series of memcpy() (or perhaps even less). Parsing time should be the problem. Look into Zend Cache and APC cache (apc.communityconnect.com|org) -- Christian Reiniger LGDC Webmaster (

Re: [PHP] require using url

2001-08-09 Thread Christian Reiniger
://host.server.com/functions.php";); That means your server does a HHTP request to http://host.server.com/functions.php , get's back the *output* of functions.php and includes that (assuming host.server.com uses PHP). -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) &quo

Re: [PHP] subroutines?

2001-08-09 Thread Christian Reiniger
t results for SEARCH, > print DETAILS, etc.). Please tell me I'm mistaken! http://www.php.net/manual/en/functions.php http://www.php.net/manual/en/function.require-once.php http://www.php.net/manual/en/control-structures.switch.php http://www.php.net/manual/en/language.oop.php -- Christian R

Re: [PHP] Apache Directives

2001-08-09 Thread Christian Reiniger
gt; PerlHandler somehandler::foo > > > now anything that access /login/salkdfjaslkjf gets redirected executed > through somehandler::foo ForceType application/x-httpd-php Now /login* URLs execute the PHP script "/login", which gets the complete URI as $REQUEST

Re: [PHP] How do I write a compound variable?

2001-08-06 Thread Christian Reiniger
7=20; > $high_1998=18; > $high_1999=20; > $high_2000=21; > $high_2001=23; Use Arrays: $high [1995] = 22; $high [1996] = 23; ... -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) Results 1 - 10 of about 201,000,000. Search took 0.08 seconds - http://www.google.com/search?q=e

Re: [PHP] Re: Minutes between tow dates

2001-08-05 Thread Christian Reiniger
On Saturday 04 August 2001 00:02, Richard Lynch wrote: > Something like: > > select date_format('unix-timestamp', yoursessiontimestampcolumn) from > sessiontable; SELECT UNIX_TIMESTAMP(yourtimestampcolumn) AS thetime FROM sessiontable; could be a bit faster -- Christian R

Re: [PHP] ? about PHP includes

2001-08-03 Thread Christian Reiniger
he specified numbers of characters. So you read the entire file, line by line. Use $Text = fread ($txtfile, 250); instead. > print $line; > } > > close($txtfile); fclose -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) "Software is like sex: the best is for

Re: [PHP] PHP_SELF

2001-08-01 Thread Christian Reiniger
On Tuesday 31 July 2001 04:59, Gerard Samuel wrote: > if ($post = "1" && $Age = " ") {echo "NO";} "=" is assignment. "==" is comparison -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) The use of COBOL cripples the mi

Re: [PHP] Re: HTTP header question.

2001-07-29 Thread Christian Reiniger
the browser. Wrong way for what you want to do. header ("Location: http://XY";) works (if there's a header ('302: Moved Temporarily'); before it), because it just tells the browser "don't use this URL at the moment - try XY instead" and the browser in

Re: [PHP] IE -> View Source

2001-07-26 Thread Christian Reiniger
e any > webpage that would truly have a reason to hide their source. I have. Often. There's so much HTML code out there that's so bad that it should be hidden to save its author much embarassment (and to save us from feeling sick too often... :-) -- Christian Reiniger LGDC W

Re: [PHP] Why doesn't this simple query work?

2001-07-26 Thread Christian Reiniger
//foo.bar/yourscript.php?location=xy';delete+from+shoots+where+location+!=+' Use Addslashes or magic_quotes_gpc. -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) ...to paraphrase Churchill, while representative democracy may be terrible, it's still the best system t

Re: [PHP] Headers

2001-07-25 Thread Christian Reiniger
e browser. Read some HTTP intro. Regarding your problem - have a look into sessions. they might be what you want. -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) Error 032: Recursion error - see error 032 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

Re: [PHP] Turning a filehandle into an array

2001-07-24 Thread Christian Reiniger
gt; > exec("ls $dir", $ls); re-read the manual entry on opendir() -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) I sat laughing snidely into my notebook until they showed me a PC running Linux. And oh! It was as though the heavens opened and God handed down a cl

Re: [PHP] Single Digit in Double digit column

2001-07-23 Thread Christian Reiniger
uble digit id are displayd. it fails to > display items with 1 digit! > What did I do wrong What did you do? > I want to know where to look. In your query. Or your PHP code. That's about all I can say. If you want to get a useful answer, provide some relevant facts. -- Christia

Re: [PHP] Email Software

2001-07-19 Thread Christian Reiniger
cheapest way to make millions of people really mad at you. -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) REALITY.SYS corrupted ... reboot Universe [Y,n]? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: [PHP] HTML in XML???

2001-07-19 Thread Christian Reiniger
a HTML tag. > But I think my solution is very stupid. This should work: -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) REALITY.SYS corrupted ... reboot Universe [Y,n]? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional co

Re: [PHP] lack of error

2001-07-16 Thread Christian Reiniger
ere to start. any one got an idea what may cause such? > here is the url you can try it. > > http://www.hvacsites.com/SiteBuilder/logo.php?tmpcolor=_dred&logo_text= >sdfdsdfasfd&logo_style=1 Works fine for me -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) "

Re: [PHP] Array problem in PHP. Please help.

2001-07-12 Thread Christian Reiniger
rcArray as $Foo) { foreach (array_keys ($Foo) as $Key) { $DestArray [$Key] = $Foo [$Key]; } } $DestArray should be what you want after this treatment... -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) "Never doubt that a small group of thoughtf

Re: [PHP] What the heck is this

2001-07-11 Thread Christian Reiniger
t; > To: "Adam" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> > Sent: Wednesday, July 11, 2001 2:12 AM > Subject: Re: [PHP] What the heck is this > > > That's a classy question . > > > > At 23:11 10/07/2001 -0700, Adam wrote: > > >

Re: [PHP] regex questions

2001-07-10 Thread Christian Reiniger
he number at the end, and not just append > the line like I want to. Let the pattern remember it: $bar = preg_replace ('/(\d)">/', '\1"/>', $foo); -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) I saw God - and she was black. -- PHP

Re: [PHP] Require very urgent Help about Security (pki, digital signature) along with PHP

2001-07-10 Thread Christian Reiniger
e, employ a good security expert. Everything else is a desaster waiting to happen. -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) I sat laughing snidely into my notebook until they showed me a PC running Linux. And oh! It was as though the heavens opened and God handed down a cl

Re: [PHP] can I fopen an https url?

2001-07-08 Thread Christian Reiniger
On Saturday 07 July 2001 09:27, Jeff Orrok wrote: > and assuming I can, will this dump the resulting page to the browser? > > $fp = fopen( $buildURI, "r" ); > fpassthru( $fp ); > fclose( $fp ); Why don't you just try it? -- Christian Reiniger LGDC Webmaster (htt

Re: [PHP] where can I find a good documentation on regular expressions?

2001-07-06 Thread Christian Reiniger
On Thursday 05 July 2001 19:33, Mick Foster wrote: > where can I find a good documentatio on regular expressions? > I´m desperate in need of it... > > thanks for your time http://php.net/manual/en/pcre.pattern.syntax.php And if you need an intro look through phpbuilder.com. -

Re: [PHP] Number of the line ?

2001-07-06 Thread Christian Reiniger
uot;; > 3 echo "i'm on line $NUMBER_LINE\n"; echo "I'm in file " . __FILE__ . ", line " . __LINE__ . "\n"; -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) (A)bort (R)etry (P)retend this never happened ... -- PHP General Maili

Re: [PHP] Security of PHP code

2001-07-04 Thread Christian Reiniger
. > > For example = make this line show_source($file); then go to your page > > like file.php?file=/etc/passwd and you're freaked! -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) Pretty cool, the kind of power information technology puts in our hands these days.

Re: [PHP] Troubleshooting syntax ?

2001-07-04 Thread Christian Reiniger
On Wednesday 04 July 2001 16:58, Kurt Lieber wrote: > That domain name doesn't appear to be valid. Perhaps you meant: > > http://validator.w3.org ? Um, yes. Why can't the w3c simply have "w3c" as domain name? *sigh* > http://validator.w3c.org/ -- C

Re: [PHP] Troubleshooting syntax ?

2001-07-04 Thread Christian Reiniger
e, hopefully catching the problem? http://validator.w3c.org/ -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) The use of COBOL cripples the mind; its teaching should, therefore, be regarded as a criminal offence. - Edsger W. Dijkstra -- PHP General Mailing List (http://www.

Re: [PHP] Using PHP to test if server is online

2001-07-03 Thread Christian Reiniger
ected" > > Any ideas on how to do this with PHP? I'm guessing it would involve > some kind of socket connection... if ($Handle = fopen ("http://slashdot.org/";, "r")) { echo "We're NOT online"; fclose ($Handle); } else { echo

Re: [PHP] setcookie problem

2001-07-03 Thread Christian Reiniger
imit is 2^31 seconds (a 32Bit signed number) on 32Bit machines (which I assume is used here). So the Y2k equivalent for Unix time() is around mid-2038. -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) ...1000100011010101101010110100111010113... -- PHP General Mailin

Re: [PHP] shtml includes

2001-07-03 Thread Christian Reiniger
server a constant chore. [...] > so > becomes > > easy. the bad bit is that you've got to then go and rename each > extension .php instead of .txt, but you are going to have this problem No need to rename them. They're only accessed via include(), so PHP parses them

Re: [PHP] Printing a string issue

2001-07-01 Thread Christian Reiniger
ot;\">Office"); > > Although I can't get this to parse! Use the string concatenation operator '.' : print ("Office"); -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) void sleep(){for(long int sheep=0;!asleep();sheep++);} -- PHP General

Re: [PHP] Stopping stolen / spoofed / linked sessions

2001-07-01 Thread Christian Reiniger
op the transmitted SessionID stuff, he would have to use it *before* the real user clicks on another link (because than the ID would be changed again). Still has some holes, but should catch most attacks. -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) void sleep(){for(long i

Re: [PHP] new break tags

2001-07-01 Thread Christian Reiniger
xt", $parts) right? As "/" is the pattern delimiter this of course won't work. Solution: Escape it: $breaks=preg_match_all("/\s+/i", "$text", $parts) Improved Solution: Make it more flexible: $breaks=preg_match_all("/\s+/i", "$text", $parts) Tha

Re: [PHP] how to determine size of gz-handler output

2001-07-01 Thread Christian Reiniger
() should perform identical (compression ratio - wise) to ob_gzhandler. So a $PageZ = gzencode ($Page); $PL = strlen ($Page); $PLZ = strlen ($PageZ); echo "Uncompressed : $PL"; echo "Compressed: $PLZ"; echo "Ratio: " . ($PLZ / $PL) . ""; should do the job at the c

Re: [PHP] Filtering out \ when a ' is user entered?

2001-06-29 Thread Christian Reiniger
t;entities".. Why don't you simply use addslashes () again when you put the stuff into the DB? -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) ...to paraphrase Churchill, while representative democracy may be terrible, it's still the best system that large corporations can

Re: [PHP] Pricing Advice Needed

2001-06-29 Thread Christian Reiniger
maller than the code of "newbies". Furthermore it's bad for you - you don't spend a constant amount of effort per source line. Some parts are easy while others take much time. And some areas of work (database setup, site structure planning etc) produce zero lines of cod

Re: [PHP] setting output_buffering for certain hosts or directories

2001-06-28 Thread Christian Reiniger
Try using php_flag instead of php_value -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) "The number of Unix installations has grown to 10, with more expected." -- The Unix Programmer's Manual, 2nd Edition, June 1972 -- PHP General Mailing List (http://www.php.net

Re: [PHP] Filtering out \ when a ' is user entered?

2001-06-27 Thread Christian Reiniger
backslashes so they don't appear on the > final public viewable page? http://php.net/stripslashes -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) "Never doubt that a small group of thoughtful, committed people can change the world... Indeed, it's the only thing tha

Re: [PHP] Help with simple regular expression

2001-06-25 Thread Christian Reiniger
7;t stop at the greater-than sign. It should be simple thing but > > I'm stumped! Greedy means: it tries to match as much as possible. In your case it matches "" - a string starting with "" :) -- Christian Reiniger LGDC Webmaster (http://lgdc.sunsite.dk/) This is

Re: [PHP] General Coding Question

2001-06-21 Thread Christian Reiniger
t a flamewar. > > dont use " then. why not use ' ? > > echo " > >" > > echo " > >" > I like the second. it is proper html check it with w3.org. -- Christian Reiniger LGDC Webmaster (http://sunsite.dk/lgdc/) "Nev

Re: [PHP] List of included file names.

2001-06-20 Thread Christian Reiniger
resubmit the question. -- Christian Reiniger LGDC Webmaster (http://sunsite.dk/lgdc/) Very funny, Scotty! Now beam up my clothes... -- 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 admin

Re: [PHP] list of included file names

2001-06-20 Thread Christian Reiniger
On Tuesday 19 June 2001 17:42, Tim McGuire wrote: > For debugging purposes, I want to see a list of the included files on a > page in HTML comments. http://php.net/get_included_files -- Christian Reiniger LGDC Webmaster (http://sunsite.dk/lgdc/) Very funny, Scotty! Now beam up my c

Re: [PHP] Passing Array through URL

2001-06-19 Thread Christian Reiniger
like serialize, or any other way? * Write it to the database (using serialize()) * Pass the record ID via URL * Read from the DB in the receiving script -- Christian Reiniger LGDC Webmaster (http://sunsite.dk/lgdc/) void sleep(){for(long int sheep=0;!asleep();sheep++);}

Re: [PHP] A web server query

2001-05-24 Thread Christian Reiniger
On Thursday 24 May 2001 10:49, Parag Mehta wrote: > i would like to know if there is any smal webserver like boa or thttpd > which supports php ? Yes. thttpd for example. Read the manual for more info -- Christian Reiniger LGDC Webmaster (http://sunsite.dk/lgdc/) I sat laughing snidel

Re: [PHP] php unpack function

2001-05-23 Thread Christian Reiniger
t the short integer values from it. The problem I am having > is when reading > all the documentation for the pack/unpack function, I have been unable > to figure out a way > to only take a small subset of the data. For instance, my file is look into fseek(), fread() and substr ()

Re: [PHP] outputting lines from file(file.php)

2001-05-23 Thread Christian Reiniger
o pass the lines through something like chop(), or > html_spec_chars? > > How do you guys display php files to the screen in the HTML stream? http://php.net/show_source -- Christian Reiniger LGDC Webmaster (http://sunsite.dk/lgdc/) This is JohnC IMHO, I compaired tri-word groupings here and

Re: [PHP] Web Server processing question

2001-05-23 Thread Christian Reiniger
has to be some "real" reason for it. Can you post some code? -- Christian Reiniger LGDC Webmaster (http://sunsite.dk/lgdc/) /* you are not expected to understand this */ - from the UNIX V6 kernel source -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAI

Re: [PHP] re: files

2001-05-23 Thread Christian Reiniger
On Wednesday 23 May 2001 17:03, Jon Yaggie wrote: > Okay thanks perhaps i am using an old manual. I think i downloaded it > about three months ago but this function is not present there . .. Bad excuse. That function has been in there since at least the early PHP3 versions. -- Chr

Re: [PHP] PHP AND SSI

2001-05-23 Thread Christian Reiniger
"Sis Sounds Interesting" - "Server Side Includes" - "Selective Stupidity Incorporated" You have three guesses... -- Christian Reiniger LGDC Webmaster (http://sunsite.dk/lgdc/) /* you are not expected to understand this */ - from the UNIX V6 kernel source -- PHP Gen

Re: [PHP] Checking an URL

2001-05-23 Thread Christian Reiniger
ps://www1 if it is > https://www1 then show the page otherwise echo a message. > > The reason is I don't want people to view certain pages without the > secure server connection. You could check $SERVER_PORT whether the normal http port or the ssl one is used. -- Christian Rein

Re: [PHP] Regular Expression Help

2001-05-22 Thread Christian Reiniger
20}$/', $Subject) should do the trick. -- Christian Reiniger LGDC Webmaster (http://sunsite.dk/lgdc/) Nothing is more dangerous than an idea if it's the only one you have. - Emil-Auguste Chartier, "Propos sur la religion", 1938 -- PHP General Mailing List (http://www.php.net/

  1   2   3   4   5   >