RE: [PHP] time() problem

2002-09-18 Thread Savaidis
Hello all! I use time() to keep UNIX seconds from 1970 to a timestamp(14) MySQL field. But when I read it (Dt_last) it is TO big compearing with "today=time()" in a php script that is only some seconds later. today : 1032350421 Dt_last: 20001101165838 What can I do? Thanks! Makis Makis -

[PHP] mailing list program?

2002-06-22 Thread savaidis
Is there any mailing list prorgam for Linux server? I want to have text import possibility of addresses. Thanks Makis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] real IP?

2002-06-19 Thread savaidis
using the ip var ip = ''; in script I get one IP address NOT the same with this one that gives me the program and it is allways the same (I have dynamic access so my IP must vary) I think it is the IP of my host. Can't I get my real IP number? Thanks Makis -- PHP General Mailing List

RE: [PHP] shtml problem

2002-06-19 Thread savaidis
ysis & Solutions [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 18, 2002 11:22 PM > To: PHP List > Subject: Re: [PHP] shtml problem > > > On Tue, Jun 18, 2002 at 12:40:40PM +0300, savaidis wrote: > > > > echo (' width=200 height=600 > > framebord

[PHP] shtml problem

2002-06-18 Thread savaidis
I use a search.shtml script to pass with a form some vars (user's IP) to a PHP script to keep it in a MySQL record. When I run the search.shtml directrly , I have no problem all vars pass and are keept OK. But when I run it from a frame then the IP var is undefuned (null). ---

[PHP] "fishcart" on win98

2002-06-14 Thread savaidis
I have a problem trying to install Fishcart on my win98 system.(Also a ActivePerl problem) Has anyone succeed this? PS Sorry for non-topic. I had no answer from the "fishchart" list. Makis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] small problem

2002-06-12 Thread savaidis
Where in config have I to change "something" to make Apache understand /root/index.php as /root/ ? Thanks Makis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] e-commerce example

2002-06-08 Thread savaidis
I'm looking for e-commerce example (PHP+MySQL) so I don't start from zero and save some time. Does somebody knows something about? Thanks Makis Savaidis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] still running the old version after recompiling??

2002-06-03 Thread savaidis
ject: Re: [PHP] still running the old version after recompiling?? > > > On Monday 03 June 2002 12:31, savaidis wrote: > > I forgot to write I run on a win98, so no shell :) > > So what? > > The equivalent in Win98 is to open an MS-DOS prompt and type: path > >

RE: [PHP] still running the old version after recompiling??

2002-06-02 Thread savaidis
I forgot to write I run on a win98, so no shell :) So what? Makis > -Original Message- > From: Evan Nemerson [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 03, 2002 1:52 AM > To: savaidis; [EMAIL PROTECTED] > Subject: Re: [PHP] still running the old version af

RE: [PHP] still running the old version after recompiling??

2002-06-02 Thread savaidis
I have one similar problem. I had a directory "Php" under my "root" directory that was the root for Apache. Then I rename "Php" to "php" but after restart, reset ecc - some months now- still recognize only "Php" and NOT "php". What's wrong? Makis > -Original Message- > From: Andy [mai

RE: [PHP] refresh (part of) a page?

2002-05-20 Thread savaidis
on Wong [mailto:[EMAIL PROTECTED]] > Sent: Sunday, May 19, 2002 3:35 PM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] refresh (part of) a page? > > > On Sunday 19 May 2002 18:03, savaidis wrote: > > I want to refrech a part of my page (or the whole page) using PHP. > > Pe

[PHP] refresh (part of) a page?

2002-05-19 Thread savaidis
". I tried also "Location" and "pagename.php,FALSE" but also with no results. I want to refresh some pictures (jpg) but I don't want to use multi picture jpg as the page will be to large. Makis Savaidis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP+MySQL -> Excel ?

2002-05-18 Thread savaidis
I use the ODBC connection with no problem, I get about 1000 rows to Excel in seconds. First row contains the colums names. But I wonder if there is a way to write back the data to MySQL database from Excel. (with ODBC connection, becouse with files I think is possible) Makis > -Original Me

[PHP] a set of *real* random numbers?

2002-05-17 Thread savaidis
rom computers timming. So I get always the same sets of 8 numbers. (i.e. 1->8, 3->10, 15-16-17-18-19-20-1-2 ecc) What can I use for seed for *real* rnd? (I FOUND IT, I CHANGED 10 to 1000 AND IT WORKS!) Thanks - PLEASE DON'T ANSWER!!! ** Makis Savaidis ==

RE: [PHP] some Javascript functions with PHP

2002-05-17 Thread savaidis
Stone [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 16, 2002 8:16 PM > To: savaidis; [EMAIL PROTECTED] > Subject: Re: [PHP] some Javascript functions with PHP > > > The user's IP address is stored in the PHP global, $REMOTE_ADDR. Browser > information can be extr

[PHP] some Javascript functions with PHP

2002-05-16 Thread savaidis
with PHP info like this (browser type ecc) and user's IP address without Javascript? Or use Javascript and then run a php script to write it to the MySQL database? Thanks Prodromos Savaidis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] checkbox doesn't pass?

2002-04-04 Thread savaidis
Thank you both for help and info! You were both very fast :) I didn't know I could not to use $HTTP_POST_VARS . Now it works all right. But IF I still want to use $HTTP_POST_VARS, what then? What about the warning when checkbox is not checked? Thanks Makis > -Original Message- > From

[PHP] checkbox doesn't pass?

2002-04-04 Thread savaidis
not set at all. (??why??) So I use : if (!isset($C1)) { $C1="0" } but still I get an warning that C1 is not set, on my screen. That happens before the use of isset function. How can I susspent this warning message? What's wrong? Makis Savaidis Thessaloniki Greece -- PHP Ge

[PHP] Hi!

2002-03-22 Thread savaidis
Hi all! I'm quite new to PHP so I have two questions: How is possible to on an image and run a php function? Also how is possible to pass some php vars to javascript vars? Makis Thessaloniki Greece -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/