[PHP] Re: Creating graphs with PHP?

2003-03-20 Thread Joseph Szobody
Dennis, Try this: http://www.aditus.nu/jpgraph/ Joseph "Denis L. Menezes" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] hello friends, Is there a possibility to create graphs on a web page using PHP? I have loooked through the PHP manual but cannot find anythi

[PHP] mysql ending at start up

2003-03-28 Thread Joseph Bannon
The mysql support list is slow, so I though I would post here since I know this list is more active. MySQL shuts down when I start it up... # Starting mysqld daemon with databases from /home/mysqldb 030328 09:29:32 mysqld ended __ Do you Yahoo!?

RE: [PHP] mysql ending at start up

2003-03-28 Thread Joseph Bannon
> Joe you got a reply within 20 minutes on the MySQL > list asking you this: Yeah, I did, but I'm use to the fast response of thsi list. > What does your .err log have to say about > it? I don't have one. > Let's find your database error log, as root type: > > find / -name "*.err" -print |

[PHP] locate

2003-03-28 Thread Joseph Bannon
How do you update the locate database? /var/lib/slocate/slocate.db __ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] mysql ending at start up

2003-03-28 Thread Joseph Bannon
> Please use the appropriate list. If you want a fast > response take out a mysql support contract. Thanks Jason. You're such a supportive individual -lol. J. __ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your deskto

[PHP] re: jason wong (was: locate)

2003-03-29 Thread Joseph Bannon
> You really are taking advantage of people's > generosity in answering your OT questions. Why are you such a jerk Jason? I'm trying to install php / mysql and I got some questions regarding error messages I get. An OT question would be me asking something like, whats the best temp for cooking a

[PHP] PHPSESSID Handling...

2003-04-01 Thread Dan Joseph
is a valid number, and if it is not, exit the application? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Auto escalation

2003-04-01 Thread Dan Joseph
er so many seconds. 3. When some levels are hit, and you want more features, just simply code them. I had it e-mail the Ops Manager when it hit level 4 (48 hours of no touches). Lemme know if that doesn't help. -Dan Joseph -Original Message- From: John W. Holmes [mai

[PHP] Opinion on a method....

2003-04-04 Thread Dan Joseph
tion? Is there something else? Are you doing something similar? All opinions greatly appreciated... -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Opinion on a method....

2003-04-04 Thread Dan Joseph
Ahh, good thought. I also have it outside the web site directory tree. -Dan Joseph -Original Message- From: Bryan Lipscy [mailto:[EMAIL PROTECTED] Sent: Friday, April 04, 2003 2:14 PM To: 'Dan Joseph'; [EMAIL PROTECTED] Subject: RE: [PHP] Opinion on a method

RE: [PHP] Opinion on a method....

2003-04-04 Thread Dan Joseph
ated, or not). Should this do it? -Dan Joseph -Original Message- From: Jon Haworth [mailto:[EMAIL PROTECTED] Sent: Friday, April 04, 2003 2:20 PM To: Dan Joseph; [EMAIL PROTECTED] Subject: RE: [PHP] Opinion on a method Hi Dan, > I would like to get some opinions here on a m

RE: [PHP] Opinion on a method....

2003-04-04 Thread Dan Joseph
ks to everyone! -Dan Joseph -Original Message- From: Jon Haworth [mailto:[EMAIL PROTECTED] Sent: Friday, April 04, 2003 3:08 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] Opinion on a method Hi Dan, > the ini file looks like: hostip&user&password&databasename > after

RE: [PHP] Allowing punctuation marks in regular expressions

2003-06-06 Thread Dan Joseph
Hi, > return (preg_match("/^[a-z0-9]+$/i", $string)); That a-z0-9 is where you can do it. Just add ! or . or ? to the end: a-z0-9!?. Also, if you want upper case letters, make sure you add A-Z: A-Za-z0-9!?. -Dan Joseph -- PHP General

RE: [PHP] secure code

2003-05-29 Thread Dan Joseph
there should be some docs online. -Dan Joseph > -Original Message- > From: Tim Burgan [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 27, 2003 7:52 PM > To: PHP Lists > Subject: [PHP] secure code > > > Hello, > > I'm wondering if you can recommend any reso

[PHP] session_regenerate_id()

2003-05-30 Thread Dan Joseph
Hi, I know this function is new, however, does anyone have any documentation on it? There is nothing on php.net... -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] A good function

2003-05-30 Thread Dan Joseph
Hi, Have a look at: http://us2.php.net/manual/en/function.ereg-replace.php That might do what you want. -Dan Joseph > What is a good function for striping white space and removing > \\..\.. and possible "," Anything that would be considered > unwanted use

RE: [PHP] Re: PHP OOP x Procedural Performance

2003-05-30 Thread Dan Joseph
. Its not a big deal, just bugs me. Its really personal preference though. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] CR in MySQL?

2003-05-31 Thread Dan Joseph
> How do you put a carriage return in a MySQL database and have it > display as a line break on the web page? str_replace ("\n", "", $var); -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] CR in MySQL?

2003-05-31 Thread Dan Joseph
Hi, > > str_replace ("\n", "", $var); > > > > -Dan Joseph > > > > Is CR == NL? What's wrong with nl2br()? Beats me, is it? nothing wrong with it I guess, I just didn't know about that function. -Dan Joseph -- PHP Gene

RE: [PHP] CR in MySQL?

2003-05-31 Thread Dan Joseph
Hi, > Just did a bit of checking.. > > NL == ASCII 010, CR == ASCII 015.. Ahh ok, so nl2br() would work. Cool, I guess you learn something new everyday. Is there a one for CR's? I noticed cr2br() wasn't listed in the manual. -Dan Joseph -- PHP General

[PHP] file output, columns, etc...

2003-06-05 Thread Dan Joseph
variables to it and have the line format itself w/o me having to calculate the length of each variable and put spaces at the end accordingly? I've tried search, but I don't have a clue what I am really looking for. Help is appreciate. -Dan Joseph -- PHP General Mailing List (http:

RE: [PHP] file output, columns, etc...

2003-06-05 Thread Dan Joseph
t did the trick, thanks! I haven't had much use for sprintf, and I didn't realize it formated things quite like that. I appreciate the help. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] new line question

2003-06-05 Thread Dan Joseph
hi, print (4+5) . "\n"; print ($num1 + $num2) . "\n"; -Dan Joseph > -Original Message- > From: Meay Santiglia [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 04, 2003 2:40 PM > To: [EMAIL PROTECTED] > Subject: [PHP] new line question > > >

RE: [PHP] Re: Migration once again

2003-06-05 Thread Dan Joseph
Hi, try changing your echo line to echo ' and then "; to '; -Dan Joseph > -Original Message- > From: Øystein Håland [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 04, 2003 3:16 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Re: Migration once ag

RE: [PHP] Re: Migration once again

2003-06-05 Thread Dan Joseph
Hi, > > myWin=window.open(\"$_SERVER[PHP_SELF]?skrivut=yeah&target=$target Actually, I see. the problem... that should read: myWin=window.open(\"' . $_SERVER['PHP_SELF'] . '?skrivut=yeah&target=$target also, use: echo '

RE: [PHP] how to make php working with asp?

2003-06-10 Thread Dan Joseph
ere is no reason for you to have to use ASP, then just use PHP by itself. If you must use ASP, you'll just have to use that. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] MSSQL - Previous/Next Paging Results

2003-06-10 Thread Dan Joseph
* FROM table You should be able to find some info under the msdn.microsoft.com page. Or, MS has several hundred newsgroups, they should have one for MSSQL. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Generate PHP using PERL???

2003-06-10 Thread Dan Joseph
resize work for you, and call it like... system ('/usr/local/bin/php resize.php'); ... in Perl. I don't prefer doing these kinds of things, but I guess I don't personally have a better solution to your problem. Maybe someone else does? -Dan Joseph -- PHP G

RE: [PHP] Best PHP books

2003-06-10 Thread Dan Joseph
Hi, I'll scond the O'Reilly books. I have Programming PHP and Web Apps w/PHP & MySQL -- both are excellent. Since you've went through one book, also keep in mind www.php.net is a great reference tool. -Dan Joseph > -Original Message- > From: Ryan A

RE: [PHP] shorthand "if" notation

2003-06-11 Thread Dan Joseph
;red") ? echo 'true' : echo 'false'; You'll find this comes in handy with things like printf and other places like that. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] array sort help...

2003-06-11 Thread Dan Joseph
ru 12 I want to sort the array by loan_info. Could someone please explain this to me? I kind of understand array sorting, but I am still lost... -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Good PHP Books

2003-06-16 Thread Dan Joseph
d fit your needs. -Dan Joseph > -Original Message- > From: Mark McCulligh [mailto:[EMAIL PROTECTED] > Sent: Monday, June 16, 2003 10:25 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Good PHP Books > > > Hi Other PHP Users, > > I have been asked to teach an intr

[PHP] functions, opinion...

2003-06-16 Thread Dan Joseph
ogramming style. Opinions? -Dan Joseph

RE: [PHP] functions, opinion...

2003-06-17 Thread Dan Joseph
s (ASP, PHP, etc) that I've "abused" functions a bit. I then got to thinking one day that maybe what I was doing was normal, but then I figured that it probably wasn't. At times it seems like it caused me to scramble all my logic. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] functions, opinion...

2003-06-17 Thread Dan Joseph
me, this makes sense. Thanks all for your opinions. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Naming a variable with a variable

2003-06-17 Thread Dan Joseph
Hi, > Ho can I create (name) a variable with other variables value? > > If $foo = "bar"; > > then the variable I want to create is $bar. $$foo = "blah"; that will set $bar equal to blah. -Dan Joseph -- PHP General Mailing List (http://

RE: [PHP] Re: Processing Form Data /w $_POST

2003-06-19 Thread Dan Joseph
e report, and thus writing only the last $report item that was built. .= would concat 'em all together. Am I misunderstanding? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] switch structure...

2003-06-19 Thread Dan Joseph
er way of doing this madness I've come up with? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] switch structure...

2003-06-19 Thread Dan Joseph
t sure is a relief to know that this list is here when I'm having bad PHP days.. which lately, is everyday... This solved my problem perfectly. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Month loop

2003-06-19 Thread Dan Joseph
Unless you just want to manually create an array with the month's names in it. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Cookies- peanut butter or chocolate??

2003-06-19 Thread Dan Joseph
Hi, > > 1. How do you setup a cookie that will not expire?? > > You can't however you could just set the year into the distance future a few years. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Cookies- peanut butter or chocolate??

2003-06-19 Thread Joseph Szobody
For (2) you could even build an array, object, etc. if you need to store several values and use serialize() right before setting the cookie, and unserialize when you retrieve the cookie. Joseph "Henning Sittler" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >

[PHP] Re: MAIL( ) - Send mail using another SMTP

2003-06-21 Thread Joseph Szobody
Here is a class that you could use. http://phpmailer.sourceforge.net/ Joseph "Chinmoy Barua" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello Everybody, > > I don't have sendmail/qmail on my web server where i > installed PHP. But I want to s

RE: [PHP] Chomp, Chomp, Chomp

2003-06-23 Thread Dan Joseph
Hi, chop and rtrim just take out white space. Perl's chomp takes off the last character no matter what it is. $foo = substr($foo, 0, -1); That will emulate Perl's chomp. -Dan Joseph > -Original Message- > From: Sparky Kopetzky [mailto:[EMAIL P

RE: [PHP] - Default Date

2003-06-23 Thread Dan Joseph
www.php.net has a few useful things on there, one of them is the date() function. -Dan Joseph > -Original Message- > From: Gary Ogilvie [mailto:[EMAIL PROTECTED] > Sent: Monday, June 23, 2003 9:22 AM > To: 'PHP General' > Subject: [PHP] - Default Date > > &

[PHP] Re:

2003-06-23 Thread Joseph Szobody
I believe this is because the PHP engine thinks that the "'; ?> Joseph "Doug Essinger-Hileman" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > When I include in my html > code, I get a parse error. The version is 4.1.2; phpinfo() reports

RE: [PHP] Date problem

2003-06-23 Thread Dan Joseph
Hi, That looks like a unix timestamp. Try this: Echo date("Y/m/d h:i:s", "1056044640"); www.php.net/date Check that link to see the lettering codes and the syntax, I might be off on what I typed up there, but you'll get the concept. -

RE: [PHP] Session problem

2003-06-24 Thread Dan Joseph
Hi, > I have a problem with php sessions. The following code works on my home PC > but doesn't work on my office PC. What can be the problem? Its possible you have cookies turned off on your office PC. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To

[PHP] Re: Are there any PHP functions for creating graphs and/or charts?

2003-06-24 Thread Joseph Szobody
http://www.aditus.nu/jpgraph/ Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] how to get the date of this Saturday all the time?

2003-06-24 Thread Joseph Szobody
> date("Y-m-d",strtotime("next Saturday")); That would give the Saturday for next week (2003-07-05). Try "this Saturday" or just "Saturday". date("Y-m-d",strtotime("this Saturday")); // Currently returns 2003-06-28 Joseph -

RE: [PHP] validation library?

2003-06-25 Thread Dan Joseph
ot;^[^@ [EMAIL PROTECTED]@ ]+\.[^@ \.]+$", $_POST["email"])) { $error = 1; $msg .= "Invalid e-mail address."; } -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Print '\n' not working

2003-06-25 Thread Dan Joseph
echo "blah\n"; I've noticed it does work. The difference? ' and ". -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Ticketing System?

2003-06-25 Thread Joseph Szobody
Andreas, I haven't used this one, but it looks really good. http://www.innovatehelpdesk.com/ Joseph "Andreas Cahen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello List :) > > Is there any usefull ticketing system (Hotline/Support/etc.) wr

RE: [PHP] Securing PHP code

2003-06-25 Thread Dan Joseph
rs, and exit() the script after your header redirects and things like that. That should get you started... -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Securing PHP code

2003-06-25 Thread Joseph Szobody
a bit curious. How would the public server communicate with the private server, passing in database queries and getting results, if it can't connect directly to the database? Are we talking about building a SOAP interface between the two? Thanks, Joseph -- PHP General Mailing List (h

RE: [PHP] Securing PHP code

2003-06-26 Thread Dan Joseph
low a hacker access to your docroot (not necessarily the entire system) through the web browser, and they can download all those files. Why leave the database connection information in there for him? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Securing PHP code

2003-06-26 Thread Dan Joseph
ues to worry about then where you have your mysql connect info! -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] if else if statement failed...

2003-06-26 Thread Dan Joseph
o it? That sounds kinda bizzare, how many elseif's did you have? also, were you using 'else if' or 'elseif'? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP Certification

2003-06-27 Thread Dan Joseph
eve www.brainbench.com is still around. They're the only one that I can think of off hand. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP-programmers salary

2003-06-27 Thread Dan Joseph
Yo, > Can anybody tell me what is the avarage PHP-programmers salary? www.salary.com -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Variable from the form

2003-06-30 Thread Dan Joseph
register_globals set to off. If you have it on, you can use either, however, the second is more insecure. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] php5 and mysql licences

2003-06-30 Thread Dan Joseph
Hi, Is the mysql client library going to be put back in for future betas? Or are we mis-reading the change log and its still there? -Dan Joseph > -Original Message- > From: Derick Rethans [mailto:[EMAIL PROTECTED] > Sent: Monday, June 30, 2003 1:05 PM > To: Chris

[PHP] Regular Expression

2003-07-01 Thread Dan Joseph
must only contain letters, numbers, #, or -."; } However, if I put any valid character as the first, and then any illegal characters ([EMAIL PROTECTED], etc) after that, it passes it as ok. Can someone tell me what I am doing wrong with the regex? -Dan Joseph --

RE: [PHP] Regular Expression

2003-07-01 Thread Dan Joseph
ice also, however, with the # and - being legal, things like ctype_alnum and others don't work out. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Regular Expression

2003-07-01 Thread Dan Joseph
he $ did that. Thanks for the info. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Regular Expression

2003-07-01 Thread Dan Joseph
Hi, That might actually be a good solution for another item I'm working with. Thanks for the tip. -Dan Joseph > -Original Message- > From: Jay Blanchard [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 01, 2003 10:10 AM > To: Dan Joseph; [EMAIL PROTECTED] &g

[PHP] Where to set return-path for virtualhosts

2002-07-23 Thread Joseph Koenig
I saw a comment in the online docs about setting the return-path for sendmail for virtualhosts. However, the note did not say WHERE to put the line - I attempted to put it into apache's virtual host tag and that failed. The line was: php_admin_value return-path "/usr/sbin/sendmail -t -i -f [EMAIL

RE: [PHP] Update of the problem w/ code - conditional image generation problem?!

2002-07-29 Thread Joseph Rosenblum
Do you know you have a typo in that conditional there? Was that your real code? You misspelled 'else' as 'esle'. -Joseph Rosenblum President, 25th Street Networks Get Easy, Reliable PHP Web Hosting at: http://www.25thstreet.net -Original Message- From: Alex M

RE: [PHP] searching an array for words starting with 'p'

2002-07-30 Thread Joseph Rosenblum
I don't think there's a builtin that does exactly what you are looking for, but this will do the trick: -Joseph Rosenblum President, 25th Street Networks Easy, Reliable PHP Web Hosting at: http://www.25thstreet.net/ -Original Message- From: andy [mailto:[EMAIL PROTECT

[PHP] PHP and multiple page .tiffs

2002-08-03 Thread Joseph Szobody
Is there a way for PHP to look at a local multiple-page .tiff file and find out haw many page it has? Thanks, Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] '#' character breaking the URL string

2002-08-27 Thread Joseph Szobody
able, it breaks the whole string. Everything after the '#' is lost. How can I get around this? Is this something I must simply check for and strip out? What other characters must I worry about? As you can see, I'm already putting everything through htmlspecialchars() and addslash

[PHP] Re: '#' character breaking the URL string

2002-08-27 Thread Joseph Szobody
Thanks. That's what I needed. Joseph "Richard Lynch" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]... > >I have a 5-step (5 page) process in which users must answer various > >questions. Each page passes along the data to the next page, at the

[PHP] AOL problem with remote IP address

2002-08-28 Thread Joseph Szobody
sfully, but when the user goes to a protected page, he's redirected to error.php?err=2. For some reason, the IP address appears to be changing. Is this a known issue with AOL? Is the IP really changing from page to page? That seems weird. Any way around this, or must I stop using this security

Re: [PHP] AOL problem with remote IP address

2002-08-28 Thread Joseph Szobody
rocedures (besides an encrypted connection)? I'm pretty new to PHP security issues, can you point me in a direction? Thanks, Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Displaying PDF file

2002-09-12 Thread Joseph Szobody
PDF files (without putting them in a web-accessible folder)? Thanks, Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Displaying PDF file

2002-09-12 Thread Joseph Szobody
says something like "Downloading from site .blah", then says "Done". Nothing happens. I'm still on the previous page. No error, no pdf file... nothing. I removed the Header line, and IE prompted me to download the file. That's not what I want. What am I doing

[PHP] Re: Displaying PDF file

2002-09-12 Thread Joseph Szobody
download file dialog. This is NOT what I want, why is this? Weird. Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Dynamic HTML Email

2002-09-20 Thread Joseph Szobody
rs); ?> That's it. The key part are the two header lines that set the MIME-Version, and the Content-type. Other than that it's the same. Note... I changed all the double-quotes in the HTML code to single quotes. This way I could use double-quotes around the whole block of HTML, and simp

[PHP] Running a PHP script automatically?

2002-09-21 Thread Joseph Szobody
like that. But again, how exactly would I call the script? I certainly don't want a new browser window to open every 15 minutes, especially if it doesn't close again. Any insight? Thanks! Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Specify authentication for SMTP mailserver?

2002-09-22 Thread Joseph Szobody
I'm trying to send mail on a Windows machine using PHP. I have made the necessary corrections in the php.ini file for the SMTP server address, and the sendmail_from, my problem is that my SMTP server require authentication. How do I tell PHP to provide this? Thanks! Joseph -- PHP Ge

[PHP] Re: Searching a db

2002-09-23 Thread Joseph Szobody
Joshua, I learned a ton by reading this tutorial. See if it helps... http://www.zend.com/zend/tut/tutorial-Ferrara.php Joseph "Joshua E Minnie" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hey all, > I am looking

[PHP] extract domain name from a URL

2002-10-02 Thread Joseph Szobody
. 1) http://www.google.com 2) http://www.google.com/ 3) http://www.google.com/search?sourceid=navclient&q=evil+microsoft ... would all give me http://www.google.com Could anyone give me a hand? Thanks! -- : Joseph Szobody : "Computers are like airconditioners: They stop working properly

[PHP] Re: extract domain name from a URL

2002-10-02 Thread Joseph Szobody
Never mind. Didn't realize PHP had the parse_url function. Got it! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: flash - php

2002-10-05 Thread Joseph Szobody
Couple good places to start... http://www.phpbuilder.com/columns/hill20011214.php3 http://www.macromedia.com/desdev/mx/flash/articles/flashmx_php.html Joseph "Zeljko Bozic" <[EMAIL PROTECTED]> wrote in message 001b01c26ca2$cc79c7b0$b3411ad9@stuntssw9fdkdl">news:001b01

[PHP] Re: Flash and PHP?

2002-10-29 Thread Joseph Szobody
http://www.macromedia.com/desdev/mx/flash/articles/flashmx_php.html http://www.phpbuilder.com/columns/hill20011214.php3 "Neil" <[EMAIL PROTECTED]> wrote in message news:20021029140955.29707.qmail@;pb1.pair.com... > Does anyone use this? > > -- PHP General Mailing List (http://www.php.net/)

[PHP] Re: can OCIBindByName bind an in/out placeholder of plsql

2002-10-31 Thread Fabien JOSEPH
on line 58 Hello World! I tested this script with the 3 configuration but it's the same error I changed $in, &inout , &out into $&in, $&out, $&inout but it's the same error Please help me !!! Fabien JOSEPH -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] displaying a TIFF file

2002-11-12 Thread Joseph Szobody
Folks... when I execute the following code, I get a big black nothing. I think it's the right size, but all black. No image is showing up. What gives? Header("Content-type: image/tiff"); $filename = image.tif $file = fopen("$filename",rb); fpassthru($file); fclose($file); Any help would be ap

[PHP] can a popup window get the page referer?

2002-11-12 Thread Joseph Szobody
he referer would still be detected. Am I up a creek? Is there anyway for a popup window to get the page referer (in other words, the popup opener)? Thanks, Joseph. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] can a popup window get the page referer?

2002-11-13 Thread Joseph Szobody
R and javascript. However I do like your random number idea. I'll have to give it a shot. Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] can a popup window get the page referer?

2002-11-13 Thread Joseph Szobody
ow, paste in the address. It's takes 3 seconds. Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] can a popup window get the page referer?

2002-11-13 Thread Joseph Szobody
> ...press CTRL-N - there (B> you go, a new window, pointing to the same page, with the addess bar showing (B> exactly where the page is. I use this method quite often :) (B (BFurthermore, disabling right-click does NOT disable the Context Menu key (you know, (Bthe one in between the Windows

Re: [PHP] can a popup window get the page referer?

2002-11-13 Thread Joseph Szobody
to use all these methods! I think I have it sorted out, using a variant of your original idea. Thanks! Joseph "Justin French" <[EMAIL PROTECTED]> wrote in message news:B9F96111.1728F%justin@;indent.com.au... > It still seems to me that there must be a fundamental problem

[PHP] cURL and PHP

2002-11-21 Thread Joseph Watson
to see if it is signed by a trusted CA? Any suggestions? -- Regards Joseph Watson -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] test

2002-11-21 Thread Joseph Watson
test -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] my PHP scripts hangs over a simple error

2002-07-08 Thread Joseph Szobody
expecting `','' or `';'' in /var/www/html/test.php on line 4 Now why didn't that come up immediately?! Any help is appreciated. Thanks, Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: if statement

2002-07-08 Thread Joseph Szobody
try this: if($type=="test1" || $type=="test2" || $type=="test3"){ Joseph <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Is it possible to do something like this all on one line. > What I need is if

[PHP] Zip Problem

2002-07-08 Thread Mathew Joseph
Hi There, I am trying to incorporate zipping and unzipping files on a windows platform via PHP. I came across ZZiplib but wasnt able to find any information with regard to windows installation. Is there anyone who has tried something similar ? If yes, could you give me installation deta

[PHP] can I call a variable... using variables?

2002-07-09 Thread Joseph Szobody
t;; } I get a parse error when trying to run this code. Can I not use $i to call the $var1, $var2, etc. variables? Is there another way of doing this? Thanks, Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: can I call a variable... using variables?

2002-07-09 Thread Joseph Szobody
Thanks folks. Worked like a charm -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Accessing multiple List/Menu values

2002-07-10 Thread Joseph Szobody
ocessing script access all these different values in 'list'? If I try to echo '$list' it only show *one* of the selected items from the list. I've tried treating it as an array ($list[0], $list[1], etc), but that doesn't work either. How do I get at the diff

<    1   2   3   4   5   6   7   8   9   >