[PHP] Mosinskis's autoreply

2001-07-08 Thread Ben Bleything
Just out of curiosity, is everyone else receiving auto-replies from Peter Mosinskis when they post to the list? I know I am. = Ben

RE: [PHP] Mosinskis's autoreply

2001-07-08 Thread Matthew Loff
Yep... Getting them here too. -Original Message- From: Ben Bleything [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 08, 2001 8:16 PM To: [EMAIL PROTECTED] Subject: [PHP] Mosinskis's autoreply Just out of curiosity, is everyone else receiving auto-replies from Peter Mosinskis when

RE: [PHP] Mosinskis's autoreply

2001-07-08 Thread Ben Bleything
That's what I thought. Great. I just wanted to make sure that I wasn't doing something else to provoke his mailer = Ben -Original Message- From: Matthew Loff [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 08, 2001 5:19 PM To: 'Ben Bleything'; [EMAIL PROTECTED] Subject: RE: [PHP]

[PHP] fixed it

2001-07-08 Thread [EMAIL PROTECTED]
http://www.futurebird.com/mapbuild3 I fixed it so now people who don't have css, or IE 5 (or a mac for that matter) can use it... thanks for all the feedback. Susan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

RE: [PHP] Running PHP as a cron job....

2001-07-08 Thread Michael Hall
On Sun, 8 Jul 2001, Ben Bleything wrote: Interesting method, with the lynx... I imagine that if you've only built the DSO, then that would be the way to do it.. if it worked. My guess would be, you would have to do lynx 'http://localhost/path/to/script/script.php' to force it to go

[PHP] okay I've fixed it

2001-07-08 Thread [EMAIL PROTECTED]
http://www.futurebird.com/mapbuild3 Had many errors. But now it has many fewer, any feedback you guys can send me will mean a lot. Please try to upload stuff, I need to know that is working on other computers... Susan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

Re: [PHP] Re: poor HTML syntax crashing (!) netscape

2001-07-08 Thread DAve Goodrich
Yes Netscape will be a problem for poor code and MSIE will not. HTML is very straightforward like any other language, learn to write it properly and it will do nothing that surprises you. A requirement for proper syntax is a good thing in your delivery method (the browser). PHP will roll over

RE: [PHP] Polls

2001-07-08 Thread Aaron Bennett
Marius, 2 tables (or more) is definatly the way to approach this... I'd also add an answerId column in the Answer table as well so you can primary key it.. for instance. CREATE TABLE questions ( questionId INT NOT NULL, date DATETIME, question TEXT, questionDesc TEXT, PRIMARY KEY

RE: [PHP] Re: poor HTML syntax crashing (!) netscape

2001-07-08 Thread Jack Dempsey
Even better, to save Dave some time, go to www.w3c.org They have an html validator there...it's strict, but that's the point... jack -Original Message- From: DAve Goodrich [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 08, 2001 9:00 PM To: Christian Calloway; [EMAIL PROTECTED] Subject:

Re: [PHP] UPS and USPS shipping labels?

2001-07-08 Thread Mark Bean
Sorry for not being clear. I ment to ask if anyone has written a function for UPs or USPS shipping labels. Ideally I'm looking for something that set ups the UPS shipping. UPS has a suite of tools that people can link to but they may be beyond my ability. They also require you to get

RE: [PHP] Re: poor HTML syntax crashing (!) netscape

2001-07-08 Thread Matthew Loff
I completely agree, Dave... I use IE 6 for browsing, but when I develop sites, I always test them for backwards compatibility all the way down to Netscape 3.0. If your site renders properly in NS 3.0, then you can rest assured it will render correctly for the majority of web users out there.

Re: [PHP] Global Variables -- why not have them?

2001-07-08 Thread Mark Charette
I dislike the GLOBAL statement in that many of the bugs that get me scratching my head are to do with when I have forgotten to use it. Then you're probably using it way too often. Global scope variable are inherently dangerous and cause more problems than they're worth. I've been in this

RE: [PHP] Re: poor HTML syntax crashing (!) netscape

2001-07-08 Thread Nick O'Reilly
you could also try http://css.nu/pointers/bugs.html if you are using style sheets Nick At 09:08 8/07/01 -0400, you wrote: Even better, to save Dave some time, go to www.w3c.org They have an html validator there...it's strict, but that's the point... jack -Original Message-

Re: [PHP] new lines in text fields

2001-07-08 Thread David Robley
On Sat, 7 Jul 2001 00:36, Mat Marlow wrote: Hi all, I am in desperate need for a solution to HTML text fields not storing new lines. I'm storing news articles in a database but all the text just ends up in a big block because it ignores line breaks. Is thre a way around this without having

[PHP] Zeev via Babelfish

2001-07-08 Thread Christopher Heschong
I quite enjoyed the interview at http://www.dynamicwebpages.de/90.interview-zeev-suraski-linuxtag2001.php translated via babelfish. A tasty morsel: Also the attempt to make PHP the egg-laying woolly milch sow is not my opinion after the actual target for PHP. -- Zeev Suraski (translated

Re: [PHP] Printable Report Generator

2001-07-08 Thread Christopher Heschong
If the browser supports CSS, you can define pagebreaks when it is printed. There is an excellent article at: http://www.stars.com/Authoring/Languages/XML/BeginningXHTML/printing.html It won't work in all browsers, but it gets the job done often enough. On Sunday, July 8, 2001, at 10:04 AM,

Re: [PHP] Running PHP as a cron job....

2001-07-08 Thread Steve Werby
Michael Hall [EMAIL PROTECTED] wrote: With all the advice that has been offered so far, has it been assumed that php is installed in the CGI rather than DSO manner? I haven't found this to be clear from the thread. Can PHP as a DSO interpret shell script-like files with a shebang at the

Re: [PHP] Running PHP as a cron job....

2001-07-08 Thread Steve Werby
Ben Bleything [EMAIL PROTECTED] wrote: Interesting method, with the lynx... I imagine that if you've only built the DSO, then that would be the way to do it.. if it worked. It works. -- Steve Werby President, Befriend Internet Services LLC http://www.befriend.com/ -- PHP General Mailing

Re: [PHP] Running PHP as a cron job....

2001-07-08 Thread Steve Werby
Michael Hall [EMAIL PROTECTED] wrote: I've just recently got a bit more serious with learning bash scripting and am surprised at how powerful it really is, in conjunction with the usual UNIX commands and other tools. PHP is the only choice for most things web related, but I'm finding that

Re: [PHP] Global Variables -- why not have them?

2001-07-08 Thread Brian White
At 20:13 8/07/2001 -0500, Mark Charette wrote: I dislike the GLOBAL statement in that many of the bugs that get me scratching my head are to do with when I have forgotten to use it. Then you're probably using it way too often. It is usually for SCRIPT_NAME, or one of the CGI parameters.

Re: [PHP] Global Variables -- why not have them?

2001-07-08 Thread mike cullerton
on 7/8/01 7:57 PM, Brian White at [EMAIL PROTECTED] wrote: I dislike the GLOBAL statement in that many of the bugs that get me scratching my head are to do with when I have forgotten to use it. Then you're probably using it way too often. It is usually for SCRIPT_NAME, or one of the CGI

[PHP] easy mysql question

2001-07-08 Thread [EMAIL PROTECTED]
Since I first made the tables for my site I've had to modify them quite a bit. I always keep a copy of the commands I used to make the tables in case I need to move a site. Is there a way to ask mysql to list the create table commands? Susan -- PHP General Mailing List (http://www.php.net/)

RE: [PHP] easy mysql question

2001-07-08 Thread Ben Bleything
Do you mean to output the current structure of the table? Check out http://www.mysql.com/doc/m/y/mysqldump.html. Mysqldump will do that for you... If you mean a syntax reference, check www.mysql.com. If you didn't mean either of those things, Sorry = Ben -Original Message- From:

Re: [PHP] easy mysql question

2001-07-08 Thread Mark Charette
On Sunday 08 July 2001 21:48, [EMAIL PROTECTED] wrote: Since I first made the tables for my site I've had to modify them quite a bit. I always keep a copy of the commands I used to make the tables in case I need to move a site. Is there a way to ask mysql to list the create table commands?

Re: [PHP] easy mysql question

2001-07-08 Thread Chris Kay
if you use phpMyAdmin you can dump the structure and data to a file and use phpMyAdmin to place it on a new machine At 10:48 PM 7/8/01 -0400, [EMAIL PROTECTED] wrote: Since I first made the tables for my site I've had to modify them quite a bit. I always keep a copy of the commands I used to

RE: [PHP] easy mysql question

2001-07-08 Thread Don Read
On 09-Jul-01 [EMAIL PROTECTED] wrote: Since I first made the tables for my site I've had to modify them quite a bit. I always keep a copy of the commands I used to make the tables in case I need to move a site. Is there a way to ask mysql to list the create table commands? $ mysqldump -d

Re: [PHP] Re: poor HTML syntax crashing (!) netscape

2001-07-08 Thread Adam
I completely agree, Dave... I use IE 6 for browsing, but when I develop sites, I always test them for backwards compatibility all the way down to Netscape 3.0. If your site renders properly in NS 3.0, then you can rest assured it will render correctly for the majority of web users out

[PHP] url without a query string?

2001-07-08 Thread Jon Yaggie
the problem i have a page that uses a query string to determine content. ie index.php?id=2 in this page there is a link to a memebership area that uses a remote service. this service requires that thee be the exact same refering url. is the refering url must always be index.php. how can

RE: [PHP] url without a query string?

2001-07-08 Thread Ben Bleything
A shot in the dark would be to use HTTP Post instead of Get... but, I don't know http. -Original Message- From: Jon Yaggie [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 08, 2001 9:22 PM To: [EMAIL PROTECTED] Subject: [PHP] url without a query string? the problem i have a page that

Re: [PHP] url without a query string?

2001-07-08 Thread Jon Yaggie
i mean this is coming from a hardcoded link. example www.design-monster.com links to www.site.com/index.php?id=4 but site www.hopeless.com links to www.site.com/index.php?id=2 both these then have a membership link on them and the memebership service uses the refering url. but the referer

RE: [PHP] Question about how to do this...

2001-07-08 Thread Chris Cocuzzo
ok so if I use this method below, or a hash table, etcand it has an include/require statement...in those files to be included...do I need to start it off with the ?phpor can I just write all the code and it'll be set? chris -Original Message- From: Chris Lambert - WhiteCrown

RE: [PHP] url without a query string?

2001-07-08 Thread Ben Bleything
Yikes. Popups and porn. Anyhoo, I guess I can't help you. I just don't know enough about the inner workings of http. Sorry = Ben -Original Message- From: Jon Yaggie [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 08, 2001 9:34 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] url without a

RE: [PHP] Question about how to do this...

2001-07-08 Thread Ben Bleything
I believe (and I'm sure someone will correct me if I'm wrong) that whenever you 'include' or 'require' a file, it drops to regular HTML mode... so, yes, you will need to use ?php tags at the beginning and ? tags at the ends = Hope that helps = Ben -Original Message- From: Chris Cocuzzo

Re: [PHP] Re: changing to a different file in browser

2001-07-08 Thread Brad Wright
it was in fact the mistake that was causing the whole problem. Was there a reason?...too little sleep and too much caffeine I'd say :) From: motorpsychkill [EMAIL PROTECTED] Date: Fri, 6 Jul 2001 20:38:18 -1100 To: Brad Wright [EMAIL PROTECTED] Subject: RE: [PHP] Re: changing to a different

Re: [PHP] url without a query string?

2001-07-08 Thread Jon Yaggie
i have nothing to do with the popup stuff :) - Original Message - From: Ben Bleything [EMAIL PROTECTED] To: 'Jon Yaggie' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, July 09, 2001 11:37 AM Subject: RE: [PHP] url without a query string? Yikes. Popups and porn. Anyhoo, I guess

Re: [PHP] Question about how to do this...

2001-07-08 Thread Steve Werby
Ben Bleything [EMAIL PROTECTED] wrote: I believe (and I'm sure someone will correct me if I'm wrong) that whenever you 'include' or 'require' a file, it drops to regular HTML mode... so, yes, you will need to use ?php tags at the beginning and ? tags at the ends = Think of the behavior of

Re: [PHP] Question about how to do this...

2001-07-08 Thread mike cullerton
on 7/8/01 10:58 PM, Steve Werby at [EMAIL PROTECTED] wrote: Ben Bleything [EMAIL PROTECTED] wrote: I believe (and I'm sure someone will correct me if I'm wrong) that whenever you 'include' or 'require' a file, it drops to regular HTML mode... so, yes, you will need to use ?php tags at the

RE: [PHP] Question about how to do this...

2001-07-08 Thread Ben Bleything
Thanks, I was looking for that = Ben -Original Message- From: mike cullerton [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 08, 2001 10:01 PM To: 'PHP General List (E-mail)' Subject: Re: [PHP] Question about how to do this... on 7/8/01 10:58 PM, Steve Werby at [EMAIL PROTECTED] wrote:

Re: [PHP] url without a query string?

2001-07-08 Thread another programmer
What are the requirements? Can you allow JS code? Meta refresh tags? - Original Message - From: Jon Yaggie [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 09, 2001 2:22 PM Subject: [PHP] url without a query string? the problem i have a page that uses a query string to

RE: [PHP] Post a form within a running php-script

2001-07-08 Thread Bob Horton
What if someone wanted to reply to a form but the form was expecting the information to arrive using the POST method (and wasn't explicitly PHP)? Is there any way to do it if you want to submit to a POST method form? Or some way to simulate the entering of the information and clicking of the

Re: [PHP] Post a form within a running php-script

2001-07-08 Thread mike cullerton
on 7/8/01 11:17 PM, Bob Horton at [EMAIL PROTECTED] wrote: What if someone wanted to reply to a form but the form was expecting the information to arrive using the POST method (and wasn't explicitly PHP)? Is there any way to do it if you want to submit to a POST method form? Or some way

Re: [PHP] url without a query string?

2001-07-08 Thread James Tan
hie... if i'm not wrong.. u could try using session :) that way, ucan have index.php s u ish :) --login.php-- session_start(); $id = 1; sessoin_register(id); --index.php-- session_start(); $memid = $id-0; // **statement** hope it helps.. good luck :) regards, James Jon Yaggie [EMAIL

[PHP] Wanted Some help about Applet

2001-07-08 Thread Manisha
Anybody knows good mailing list specially for Java Applets ? thanks manisha -- 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 administrators, e-mail: [EMAIL PROTECTED]

[PHP] Question about /tmp/php* files

2001-07-08 Thread Andras Kende
Hello, I noticed there are a lot of php temp files (session files) under /tmp Whats the best way to dealing with this... Thanks Andras -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

Re: [PHP] url without a query string?

2001-07-08 Thread Jon Yaggie
problem with a session is the link originates at another domain. so as far as i know i can pass a session between domains. yes js is not a problem except i dont know it. and refrshing is possible because on first load i will set up a session. can you specficate a url to refresh?? so that i

[PHP] Re: url without a query string?

2001-07-08 Thread Inércia Sensorial
I am not sure if the header(); function still maintain the referer, but if it does: You could make the first link lead to any named page, like: gate.php On gate.php you put: header(Location: index.php); On index.php you put: if ($HTTP_REFERER == 'http://www.your_domain.com/gate.php')

RE: [PHP] url without a query string?

2001-07-08 Thread Don Read
On 09-Jul-01 Jon Yaggie wrote: the problem i have a page that uses a query string to determine content. ie index.php?id=2 in this page there is a link to a memebership area that uses a remote service. this service requires that thee be the exact same refering url. is the refering url

Re: [PHP] Re: url without a query string?

2001-07-08 Thread another programmer
IE 5.5 keeps the referer of the original page you clicked. I ran a quick test, but my computer is a weird setup, so it may not be the case with other setups. - Original Message - From: Inércia Sensorial [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 09, 2001 4:15 PM

[PHP] Losing the session with database session handler...

2001-07-08 Thread Aral Balkan
Has anyone run into this: I've got a custom session handler that saves session info in a database but the sessionID gets lost as I go from one page to another. It appears to be random as sometimes it's not lost! I've got a link from one page to the other and each time a different session ID is

<    1   2