[PHP] Re: Sorry for naggin, need a short test

2002-04-12 Thread Oliver Heinisch
At 12.04.2002 19:20, you wrote: Works fine here. I can see the main page, and it opens up a window Knackige Preise! auf wiedersen -- Jason Wong - Gremlins Associates - www.gremlins.com.hk Thanks Jason, that´s what I didn´t want to hear ! ;-) Seems to get a long night, installing M$ $tuff again,

Re: [PHP] Re: another try...

2002-04-09 Thread Oliver Heinisch
Aeh, maybe you should make a plan, first, what to do. ;-) That´s normal if you go to the supermarket, why not on softwaredevelopment? At 08.04.2002 18:20, you wrote: Ok I have it working to a point... how can I impliment a loop to count the files in the directory, right now it only pulls the

Re: [PHP] Loading Images

2002-03-26 Thread Oliver Heinisch
At 26.03.2002 14:44, you wrote: I wasn't so much concearned about security of users grabbin pics. I am more trying to learn how these people load there menus dynamically and pics dynamically. Do you have any links to pages or code that describe how to make a link in the db to pics on my

[PHP] Tool to remove comments??

2002-03-22 Thread Oliver Heinisch
Hi Folks, does anybody know a tool for removing comments out of PHP scripts? I mean // this is a comment and /* this is also a comment */ it should also handle something like echo'http://somewher.somecom/somepage'; // this goes to somewhere and multiline comment like /* ..blah */ maybe anybody

Re: [PHP] Sorting

2002-03-20 Thread Oliver Heinisch
At 20.03.2002 16:29, you wrote: Hii, Actually i want to sort the files form mysql database using php sorting.I can get the correct result using php sorting if the data's are stored in the array like this format. $temp=array(apple,Orange,Gova) please tell me how i will store the field

Re: [PHP] PHP session ID not unique or session_register problems

2002-03-18 Thread Oliver Heinisch
At 18.03.2002 14:54, you wrote: Even if I did´nt look closely at your code, I would suggest, that you decrease the amount of data, diferent tables to one table. You set an cookie, therfor you have the same effect as if you use sesssion vars. So it´s easy to set and find the data, via cookie.

Re: [PHP] printing in HTML or PHP

2002-03-18 Thread Oliver Heinisch
At 18.03.2002 16:57, you wrote: I would like to print the line bellow on my HTML generated by a PHP file. How can I do it? The line is: link rel=stylesheet type=text/css href=default.css Thank you Daniel Ferreira Castro Your line should be between head and /head the you could use echo 'link

Re: [PHP] OBJECT£ºWHAT'S THE RALATION BETWEEN A,B AND C?

2002-03-17 Thread Oliver Heinisch
At 17.03.2002 10:01, you wrote: ?php class A { function A($i) { $this-value = $i; // try to figure out why we do not need a reference here $this-b = new B($this); } function createRef() { $this-c = new B($this); } function

Re: [PHP] SERVER INFO

2002-03-15 Thread Oliver Heinisch
At 16.03.2002 01:41, you wrote: Hi all, I appologise if this is off topic but I don't know who to ask. I hope you guys don't mind. Does any body know where I can find information about the steps of setting up a server(LINUX) so that people can find a certain URL address? I want to sent up a

Re: [PHP] Problems with TTF

2001-10-24 Thread Oliver Heinisch
At 24.10.01 12:37, you wrote: Warning: Could not find/open font in /sdr/httpd/Prisa/DATA/private/libs/graficos/intradia.php on line 57 Line 57: ImageTTFText ($O_imagen, 11, 0, 10, 20, $O_colorValor, arial.ttf,$s_Valor); arial.ttf is into the same dir. Any ideas? I had the same

Re: [PHP] str_replace binary safe??

2001-10-22 Thread Oliver Heinisch
At 22.10.01 21:36, you wrote: Hi folks, following problem appeared on PHP 3.0.16 on LINUX I have a binary file, where I want to replace some letters I do the following: $filename = xyz.sdc; $fd = fopen( $filename, r+b ); // also tried r $x=filesize( $filename ); // this shows the

Re: [PHP] Working with numbers

2001-05-03 Thread Oliver Heinisch
At 01:39 04.05.01 -0400, you wrote: Ok Jennifer lets do some basics ;-) I've done some searching on the php site for more info about double and float etc, but I don't really understand anything I found. Can someone give me an explanation about the difference between decimal, float, double?