Re: [PHP] pdf

2006-06-29 Thread Kim Steinhaug
as advanced as pdflib. Grab it here : http://www.pdflib.com/ regards, Kim Steinhaug http://www.steinhaug.no/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Files passing through

2005-08-23 Thread Kim Steinhaug \(php list\)
I'm using this method, works fine with 50mb+ files : if( $fd = fopen ($filepath, 'r')){ while(!feof($fd)) { $buffer = fread($fd, 2048); print $buffer; } fclose ($fd); exit; } Regards, Kim Steinhaug - - - - - - - - - www.easycms.no - Original

Re: [PHP] Looking for CMS advice

2005-08-23 Thread Kim Steinhaug \(php list\)
You are referring to this page : http://www.opensourcecms.com/ Regards, Kim Steinhaug - - - - - - - - - - - - - http://www.easywebshop.no/ - Original Message - From: Richard Lynch [EMAIL PROTECTED] To: Erik Gyepes [EMAIL PROTECTED] Cc: php-general@lists.php.net Sent: Tuesday, August

[PHP] session_start(), Pragma and Cache-control headers

2005-08-22 Thread Kim Steinhaug \(php list\)
for this answer : header('Pragma: '); header('Cache-control: '); The headers are still sendt, exept they are empty, doesnt look like a nice sollution for a production environment. Kind regards, Kim Steinhaug - - - - - - - - - www.steinhaug.com -- PHP General Mailing List (http://www.php.net

Re: [PHP] session_start(), Pragma and Cache-control headers

2005-08-22 Thread Kim Steinhaug \(php list\)
I solved the problem after a while, seems it had been reacently debated in the bug pages within php, to remove headers which are added by the session_start(); you can add the following : ini_set('session.use_cookies', false); session_cache_limiter(''); Kind regards, Kim Steinhaug

Re: [PHP] AJAX coding and Sesisons

2005-08-22 Thread Kim Steinhaug \(php list\)
that the user infact can spend more time on the same webpage without having to do some movement, :D regards, Kim Steinhaug - - - - - - - www.steinhaug.com - Original Message - From: Bret Walker [EMAIL PROTECTED] To: PHP-Users php-general@lists.php.net Cc: Ivan Meyers [EMAIL PROTECTED

[PHP] matching system - anyone seen any?

2004-08-22 Thread Kim Steinhaug
of system inside here which could build a form of profile based on your ratings, and then compare theese profiles. I havnt really started planning how this would work, or should work, but first mainly if anyone has seen such a system around. Looking for existing wheels... :D -- Kim Steinhaug

[PHP] Re: Upload problems

2004-08-15 Thread Kim Steinhaug
stuff. -- Kim Steinhaug - There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't. - www.steinhaug.com

[PHP] Re: dropdown box displays empty rule

2004-08-14 Thread Kim Steinhaug
($result1)){ if ($selected==$rowu-naamreis) echo option SELECTED value=\$rowu-naamreis\ . $rowu-naamreis . /option\n ; else echo option value=\$rowu-naamreis\ . $rowu-naamreis . /option\n ; } -- Kim Steinhaug

Re: [PHP] Using Post like Get

2004-08-14 Thread Kim Steinhaug
use session as the main system - cookies only works as a saved session in my systems. (Meaning, instead of having to logg onto the system again, the username and passowrd are stored in a cookie, this way the user can choose the famous remember me setting many of us enjoy). -- Kim Steinhaug

Re: [PHP] String compare of 7 text strings

2004-08-14 Thread Kim Steinhaug
* Ed Lazor wrote : Nice solution =) My thoughts exatly, :D -- Kim Steinhaug - There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] PHP logic - Whats going on here?

2004-08-11 Thread Kim Steinhaug
mystical going on with either my code or our servers. ?? Hope someone understand what Im wondering about here, hehe. -- -- Kim Steinhaug - There are 10 types of people when it comes to binary numbers: those who understand

Re: [PHP] PHP logic - Whats going on here?

2004-08-11 Thread Kim Steinhaug
why I in the first place removed the extra ELSE statement, since I didnt see any reason for it. But in future Ill always include it it seems, :D -- Kim Steinhaug - There are 10 types of people when it comes to binary numbers

[PHP] Re: JavaScript Enabled?

2004-08-05 Thread Kim Steinhaug
the dopcument.write by then. (Ofcourse if he has deactivated images aswell we have problems but hey... ) Alot of nothing here really, but maby someone have some thoughts on the matter. -- Kim Steinhaug - There are 10 types of people

[PHP] Re: encryption needed?

2004-07-13 Thread Kim Steinhaug
to the login system again. -- Kim Steinhaug - There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Opinion: PHP Sessions or Cookies

2004-07-13 Thread Kim Steinhaug
in the /tmp folder getting messed up. If you still havnt solved your problem, get your provider to move you to another of his servers (physically!), or change provider. You shouldnt be having theese problems. -- -- Kim Steinhaug

[PHP] Re: PHP and Excel

2004-07-13 Thread Kim Steinhaug
proprietary Excel systems out there? Anyone? -- Kim Steinhaug - There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Benchmarking a script

2004-06-23 Thread Kim Steinhaug
email it to you, I remember I spent some time finding it. -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: bad programming?

2004-06-23 Thread Kim Steinhaug
Could be something about the server environment, you could try changing to : $_SERVER[REQUEST_METHOD] Run a phpinfo() and see what variables are active on your new server. I know that IIS webservers lack alot of the variables we take for granted mostly. -- -- Kim Steinhaug

[PHP] Re: Encryption Question

2004-06-22 Thread Kim Steinhaug
Do you really need to use stripslashes when retrieving the data? Wouldnt stripslashes only affect magic quotes or already added slashes, I mean when you addslashes to the SQL the slashes are indeed removed when inserted in the table. -- -- Kim Steinhaug

Re: [PHP] Re: is there any application , by using i can produce php exe files in windows ?

2004-06-22 Thread Kim Steinhaug
, the problem at the time I experimented with it was that you get an extra DOS window which lies on the taskbar. This was a year ago, maby things have happened since then. -- -- Kim Steinhaug -- There are 10 types of people when

[PHP] Re: comparing timestamps

2004-06-20 Thread Kim Steinhaug
Well, Since the current timestamt is now, and 5 minutes equals 60seconds * 5 minutes = 300, this would give you your range as : $range = time() - 300; If you are working with time() in your database your select would be something like : select * from table where timestamp = $range -- -- Kim

[PHP] Re: is there any application , by using i can produce php exe files in windows ?

2004-06-20 Thread Kim Steinhaug
it look abit unprofessional if your thinking of applying somthing for your business customer. -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Mysql fetch_row()

2004-06-20 Thread Kim Steinhaug
Whatabout : mysql_fetch_array() or mysql_fetch_object() Both gives you both the results and the names of the coloumns. Maby I didnt get the question right but since nobody else mentioned it, .) -- -- Kim Steinhaug

[PHP] Re: Can I detect size of files which are too large to upload?

2004-06-20 Thread Kim Steinhaug
to confront this problem. If you find a sollution be sure to inform me, I would love to know it. Happy hunting! -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them, and those

Re: [PHP] Re: array_rand() not random

2004-06-16 Thread Kim Steinhaug
order by counter limit 1); You would here need to add more information, probably might aswell include the entire banner in the database. Well, BTW, hope this helps you. -- -- Kim Steinhaug -- There are 10 types of people when

Re: [PHP] Re: Best Lossless Hi-Res Photo Storage with PHP

2004-06-13 Thread Kim Steinhaug
. -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't. -- www.steinhaug.com

[PHP] Re: export from mysql to csv file

2004-06-12 Thread Kim Steinhaug
thereafter limit 5,5 but that wasnt your question. -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Header target?

2004-06-12 Thread Kim Steinhaug
Steve Douville had a long answer, the short answer : no -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: array_rand() not random

2004-06-12 Thread Kim Steinhaug
there also exists a mathematical approach calculating a sort of the elements based on the earlier views (meaning that we count each view). -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those

[PHP] Re: Best Lossless Hi-Res Photo Storage with PHP

2004-06-12 Thread Kim Steinhaug
to ZIP the lossless images aswell, but then again I dont need to since HD isnt a problem atleast in my case. Hope this helps. -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who

Re: [PHP] Re: Decompressing files via php

2004-05-22 Thread Kim Steinhaug
There is some ZIP classes on phpclasses.org that work very well, you dont need to install anything on the server aswell as all code is included in the class. -- -- Kim Steinhaug -- There are 10 types of people when it comes

[PHP] Re: sessions pls help

2004-05-17 Thread Kim Steinhaug
. You also might want to add more variables into the prosess, like IP, browseragent and such to prevent session hijacking from proxy servers, just to be on the secure side. -- -- Kim Steinhaug -- There are 10 types of people when

[PHP] Re: session

2004-05-17 Thread Kim Steinhaug
which grows out of proportions is kinda waste of space. -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Carrying Variables

2004-05-15 Thread Kim Steinhaug
You could ofcourse also use sessions. If you need to store alot of values, this would be the way to go. If its only a couple of short ones, ofcourse some GET variables is the simplest and fastest way to go. -- -- Kim Steinhaug

Re: [PHP] Reversing a string?

2004-05-14 Thread Kim Steinhaug
hehe, Reading the manual is somewhat not so bad after all... -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Reversing a string?

2004-05-13 Thread Kim Steinhaug
,0,1); echo substr($string,0,1) . br; echo $reversed; } else echo $string; ? I added some errochecking if the string is only 1 character, since there should be no use in running the for loop then. -- -- Kim Steinhaug

[PHP] Re: PHP graphing tool?

2004-05-10 Thread Kim Steinhaug
flash graphs out there, and the last year the pricing has dropped to a reasonable one aswell so you might aswell look at the comercial sollutions out there, they have become real good. Well, thats one day worth of work summed up for you in one handy little reply, :) -- -- Kim Steinhaug

Re: [PHP] page_title

2004-05-08 Thread Kim Steinhaug
Is it me or is the sollution here incredible simple? ?php $page_title = Welcome; ? head title?=$page_title?/title -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them

[PHP] Re: Resequencing logic

2004-05-07 Thread Kim Steinhaug
call it, but I hope you got the general idea on how to do it. You need ofcourse alot more debugging and such for the final code (Like you cand moveUP the first row, since that would make the array go from 0 to -1 which doesnt make sence). -- -- Kim Steinhaug

[PHP] Re: form submission logic

2004-05-07 Thread Kim Steinhaug
! Remember, all the values in this array will be the onces you should $_POST[action]. Have fun! -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: PHP Website Architecture

2004-05-07 Thread Kim Steinhaug
here and there. Its really all up to you, there isnt a perfect way in doing this. But my advice again, use classess (OOP) as its very reusable and look at output buffering for total control. -- -- Kim Steinhaug -- There are 10

[PHP] Re: Installing GD library

2004-05-07 Thread Kim Steinhaug
put the DLL file in your PHP DLL file directory, uncomment the line in php.ini referring to it. Restart apache if running, IIS doesnt need to be restarted. -- -- Kim Steinhaug -- There are 10 types of people when it comes

[PHP] Re: auto saving data in forms

2004-05-07 Thread Kim Steinhaug
the iframe (which can be hidden), Sure you could use javaapplets and such, but there really shouldnt be any need for it. Surely such an autosave function shoudl use a temp database /table to store the data, just as word uses temp files for autosaves. Have fun! -- -- Kim Steinhaug

[PHP] Re: form submission logic

2004-05-07 Thread Kim Steinhaug
enabled. The friendslyness and functionality you can do with JS makes the total experience far better than not using JS. And you alse can save alot of reloading of the pages with confirmation dialogs and such. Anyway, its all a matter of opinion. -- -- Kim Steinhaug

[PHP] Re: Include from another URL?

2004-05-06 Thread Kim Steinhaug
You could always use this : $text = ; $fd=fopen($url,r); while ($line=fgets($fd,1000)) { $text.=$line; } fclose ($fd); echo $text; -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those

[PHP] Re: gifs, icons etc

2004-05-06 Thread Kim Steinhaug
my story went, :) -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] reversing an IF statement

2004-05-01 Thread Kim Steinhaug
{} in it, dont know if you see my problem here however, its the best I can exmplain. For all I know it has to be like this. -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them

[PHP] Rporting tool - CVS?

2004-04-17 Thread Kim Steinhaug
are updated. I have a feeling CVS would maby be the trick here, but im not sure. Still I could manually do this, it isnt that hard, but you know - maby there already is such a system out there and in that case it would fit me perfectly. -- -- Kim Steinhaug

[PHP] Re: function for backing up mysql

2004-04-14 Thread Kim Steinhaug
Take a look at phpclasses.org Last week there also came another class especially made for backups aswell if I recall. -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand

[PHP] Read file backwards

2004-04-10 Thread Kim Steinhaug
the files and show the last lines, but this wouldnt really read it backwards and would work very foolishly on large files I would think. If there isnt a way of doing this Ill have to do the above, but you never know. Ill google in the meantime. -- -- Kim Steinhaug

[PHP] Re: Read file backwards

2004-04-10 Thread Kim Steinhaug
for the tip, Kim Steinhaug Kim Steinhaug [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Anyone have a script that reads a file backwards? Im looking for a way to trace a log file, say the last 30 lines each time I run the script. I havnt found any DOS tools so I guess doing

Re: [PHP] Extension problem

2004-04-05 Thread Kim Steinhaug
the syntax. The PHP and HTML extension are nothing more than a way of cataloging / seperating the files. -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Weird variable issue encountered... help needed!

2004-04-05 Thread Kim Steinhaug
. There could also be some quotes in some variables messing up your code again. Going from magic_quotes to no_magic can be annoying - I did that experience with my database application some weeks ago... Hope this is of any help. -- -- Kim Steinhaug

[PHP] Re: Suddenly some errors are coming

2004-04-03 Thread Kim Steinhaug
1) Have your ISP upgraded PHP lately? 2) Are you including files from another server? Meaning, your on www.domain1.com including files from www.domain2.com? Ive encountered this problem earlier when 1) and 2) was the case. -- -- Kim Steinhaug

[PHP] Re: web statistics

2004-03-30 Thread Kim Steinhaug
would say gives the best presentation of the statistics from the availavle sollutions out there. http://awstats.sourceforge.net/ Regards, Kim Steinhaug www.steinhaug.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - På jakt etter en bra netbutikk løsning

[PHP] Re: PHP alternative to Browser Hawk?

2004-03-30 Thread Kim Steinhaug
()==IE)){ } if (browser_get_platform()==Mac){ } ? -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Zend Optimiser -- wide spread??

2004-03-22 Thread Kim Steinhaug
the runtime loader by default. You should check it out, www.ioncube.com -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Comparing 2 files

2004-03-21 Thread Kim Steinhaug
Visit sourceforge and look for winmerge, a really excellent software that does just what you want. Thrust me - install this software and never look for anything else, :) Altleast if your on a windows environment. -- -- Kim Steinhaug

[PHP] Re: Problem uploading large files via PHP (20+ MB)

2004-03-21 Thread Kim Steinhaug
Im not completely sure, but have you gone throught the settings in the IIS server aswell? I know altleast for the CGI IIS has its own timeout which overrides the php.ini file. It could be something here aswell, but you probably have done this. Kim Steinhaug Schonrock III [EMAIL PROTECTED] wrote

Re: [PHP] Pspell Functions!! problem I explain in English

2004-03-11 Thread Kim Steinhaug
. -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't. -- www.steinhaug.com

[PHP] Re: Request domain name

2004-02-25 Thread Kim Steinhaug
Try this one : $_SERVER[HTTP_HOST] It will do the trick for you, it will give you the root domain in the URI of your browser. -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who

[PHP] Re: replace ' with

2004-02-11 Thread Kim Steinhaug
something into a javascript statement, eg. a href=javascript: dome('typicaltext'); The above example caused me alot of headaches when the text inside ' contained either ' or , and even the entities also messed up. -- Kim Steinhaug

[PHP] Sort multidimensional array - ARGH!

2004-02-05 Thread Kim Steinhaug
(); but I cant get this to work, :( Help would be appretiated! $stats_SORTED = ???; Thanks in advance! -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Sort multidimensional array - ARGH!

2004-02-05 Thread Kim Steinhaug
I would sure love to know it, since my array infact is multidimensional, and the sort() isnt, though it for some reason solved the problem aslong as Im sorting the first field. -- Kim Steinhaug --- There are 10 types of people when

Re: [PHP] How do I protect downloadable files?

2003-12-30 Thread Kim Steinhaug
-length: $size); while(!feof($fd)) { $buffer = fread($fd, 2048); print $buffer; } fclose ($fd); exit; } -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who

Re: [PHP] How do I protect downloadable files?

2003-12-30 Thread Kim Steinhaug
should be tested on macintosh systems just to be sure. -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Selecting between using letters

2003-12-30 Thread Kim Steinhaug
for. Remember ofcourse that you wuld need to use the regex syntax. The page on mySQL covering the topic has a lot of examples. -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them

[PHP] Re: sql query and some math

2003-12-17 Thread Kim Steinhaug
if t2 has more entries for each entry in t1, your query will result in unpredictable manner. Hope this helps. -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Opening large file problem - fopen

2003-12-16 Thread Kim Steinhaug
/news_send.php:2) in /home/pilotman/public_html/admin/news_send.php on line 34 --- Hope this helpls. -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Opening large file problem - fopen

2003-12-16 Thread Kim Steinhaug
still doesnt accually work... -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't. --- Kim

Re: [PHP] Re: Opening large file problem - fopen

2003-12-16 Thread Kim Steinhaug
an example, or link to a site discussing the issue, of buffering the data? -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

Re: [PHP] Re: Opening large file problem - fopen

2003-12-16 Thread Kim Steinhaug
Attached is a little textfile on 4 lines, it will choke afte 1 line due to the \n\n problem. I use this loop to parse it : $file= error_log.txt; if($fp=fopen($file, r+)) { while($line=trim(fgets($fp))) { echo $line . br; } } -- Kim Steinhaug

[PHP] racing NO domain names problems! (For nordmenn!)

2003-12-16 Thread Kim Steinhaug
eller at de har lagt inn en sperre på GET for å bare bruke POST, men den gang ei. POST med sockets gir samme resultat, uanhengig om man benytter å eller %E5. Blir POST data kodet annerledes en GET data, altså å=%E5? -- Kim Steinhaug

Re: [PHP] racing NO domain names problems! (For nordmenn!)

2003-12-16 Thread Kim Steinhaug
Finally! The answer was this : $url = utf8_encode('http://www.norid.no/domenenavnbaser/ace/?action=Convertname=bl åbær.no'); And it all finally works, :) -- Kim Steinhaug --- There are 10 types of people when it comes to binary

[PHP] Opening large file problem - fopen

2003-12-15 Thread Kim Steinhaug
the 280MB file all in 1 go? I have plenty of timeout and plenty of RAM in the php.ini file, so the problem isnt here. -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who

[PHP] Re: Dealing with large classes over several files

2003-12-03 Thread Kim Steinhaug
and destructor function f () {} } Dont know if it helps you though. -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Upload issue - The 2MB barrier...

2003-12-02 Thread Kim Steinhaug
? Or something like this? Maby this is a pointless idea to investigate further ? -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

Re: [PHP] Upload issue - The 2MB barrier...

2003-12-02 Thread Kim Steinhaug
first... -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't. --- Richard Davey [EMAIL PROTECTED

Re: [PHP] Upload issue - The 2MB barrier...

2003-12-02 Thread Kim Steinhaug
. -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't. --- Marek Kilimajer [EMAIL PROTECTED] wrote

[PHP] Re: House for rent - Good price

2003-11-27 Thread Kim Steinhaug
Fix your clock! Post like theese really screws up the layout in my newsreader! -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Translate web site language

2003-11-27 Thread Kim Steinhaug
Fix your clock! Post like theese really screws up the layout in my newsreader! -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Associative vs normal arrays

2003-11-27 Thread Kim Steinhaug
Fix your clock! Post like theese really screws up the layout in my newsreader! -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] The clock issue in this forum!

2003-11-27 Thread Kim Steinhaug
several ways now, but I cant seem to fix them. Any help would be appritiated? Maby I should change newsreader? -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who

[PHP] Re: Print..

2003-11-27 Thread Kim Steinhaug
Fix your clock! Post like theese really screws up the layout in my newsreader! -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Re: Count online users question

2003-11-27 Thread Kim Steinhaug
Cookies, or browsersession. I found the latter to be very easy to work with. -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

Re: [PHP] Passing vars w/refresh w/register globals off?

2003-11-25 Thread Kim Steinhaug
elements (document.form.variable.value). I still havnt quite understood what you are accually asking for here, but hey, it seems like you dont know yourself, hehe -- Kim Steinhaug --- There are 10 types of people when it comes to binary

[PHP] Re: Change Date

2003-11-25 Thread Kim Steinhaug
or somthing use the date() command. -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't. --- Sadeq

[PHP] Re: Max File Size exceeded

2003-11-24 Thread Kim Steinhaug
he most likely would love to sell you a dedicated server (so would I, :). -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

[PHP] Arrays and performance

2003-11-18 Thread Kim Steinhaug
with some experience on this? -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't. --- -- PHP General

Re: [PHP] Arrays and performance

2003-11-18 Thread Kim Steinhaug
, to find the magic marker for how much XML data that is affordable to grab when done on a webserver with other clients to prevent angry customers or failures due to factory timeout setting to 30 secs. -- Kim Steinhaug --- There are 10

Re: [PHP] Unzip a file.

2003-11-17 Thread Kim Steinhaug
. This can zip down a directory of 1GB of data (tested), and depack it to another directory (tested). You can also extract single files out of the directory. If you havnt found a sollution you should try this one. -- Kim Steinhaug

Re: [PHP] Storing images for photo album?

2003-11-17 Thread Kim Steinhaug
you! -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't. --- David T-G [EMAIL PROTECTED] wrote

Re: [PHP] Can't fetch HTTP POST data in PHP?

2003-11-17 Thread Kim Steinhaug
($_POST); ? form action=?=$PHP_SELF? method=POST Your name: input type=text name=username/br/ Email: input type=text name=email//br input type=submit name=submit value=Submit me! /form /body /html -- -- Kim Steinhaug

[PHP] Re: thanks for the summary (was Re: [PHP] Can't fetch ...)

2003-11-17 Thread Kim Steinhaug
? It might be a dumb question, but when I know this I might be able to look further into the problem. -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't

Re: [PHP] Re: Alternet row colors

2003-11-16 Thread Kim Steinhaug
Thanks for this tip, i used to use this when I programmed Perl. But I didnt know it worked here aswell, hehe. Absolutely true that this is much better code practise, and it eases up the lines in the code. Great tip! -- Kim Steinhaug

[PHP] Re: Table statistics

2003-11-16 Thread Kim Steinhaug
instance of the user to meassure the counts : $count[$Screen_ Name]++; Finally you sort the array and print out the first 5. (The 2 last steps should be put together since its no use going through the data twice) -- Kim Steinhaug

[PHP] Re: Table statistics

2003-11-16 Thread Kim Steinhaug
By the way, while I write the message I forgot to correct the 2 dimentional array to array... Context is everything, :) -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who understand them

Re: [PHP] Unzip a file.

2003-11-16 Thread Kim Steinhaug
on phpclasses.org there is a ZIP class that does all you need to do. Havnt got the time to give you the url right now, but look there. -- Kim Steinhaug --- There are 10 types of people when it comes to binary numbers: those who

[PHP] Re: Storing images

2003-11-15 Thread Kim Steinhaug
of your server, and how quick you want your site to accessible for your visitors I would stick to a) I dont think it good practise to store images into the database either. -- Kim Steinhaug --- There are 10 types of people when it comes

  1   2   >