[PHP] Please point me in the right direction

2003-03-25 Thread Jerry
eciated Thanks, Jerry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: requesting sites running OS X

2002-08-14 Thread Jerry
eplace our main web server, but have not yet installed it. That will use PHP extensively. We're also using OS X Server to handle our mysql databases. (http://www.sandiego.edu/ac/classes/ to see one front end to one of the databases) Jerry -- http://www.hoboes.com/jerry/ "Give a man

[PHP] Re: sessions: what to do when browser won't accept cookies?

2002-08-16 Thread Jerry
f you did that to me as a general browser, I probably wouldn't ever visit your site again :*) Note that some sites do come right out and tell you not to use your back button to get around. You might just do this, and if they use their back button anyway, they get a new session. Jerry -- http:

[PHP] Re: Import & Stamp PDF's

2002-09-23 Thread Jerry
. You might also check out the Yahoo PDFLib group. It looks fairly active. http://groups.yahoo.com/group/pdflib/ Jerry -- http://www.hoboes.com/jerry/ "Give a man a fish and you feed him for a day. Teach him to fish, and you've depleted the lake."--It Isn't Murder If They&#

[PHP] PHP and SSI

2002-06-06 Thread Jerry
Is it possible to use SSI with PHP? If so, where can I learn how to do this? TIA, Jerry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RE: [PHP-DB] Dynamic Website Question!

2003-11-30 Thread JeRRy
x27;t want these to refresh, just the text from the database. What you have said below seems exactly what I want. But I have never used DHTML. Could you show me a example of both frames (just the source) of how one talks to another please? Jerry --- Bronislav Klucka <[EMAIL PROTECTED]> w

[PHP] RE: [PHP-DB] Dynamic Website Question!

2003-11-30 Thread JeRRy
^ With "myrow['whatever']" I'm not sure, new to this stuff, but thought I'd post my code, maybe someone could whack up a code that functions The code of the refreshing part is below with all pages relevant to it

Re: [PHP] RE: [PHP-DB] Dynamic Website Question!

2003-11-30 Thread JeRRy
consists of the parameters to refresh frame showing and tell frame showing to update a set area with updated information. The email(s) state that, read all emails. Jerry --- Jason Sheets <[EMAIL PROTECTED]> wrote: > JeRRy wrote: > > >Hi, > > > >Okay let me explain what I

Re: [PHP] I love/hate FrontPage - need another HTML editor.

2001-01-17 Thread Jerry
up some style sheets that carry > across all your pages without you having to type in all the code for > every page, you're golden. Why would you type in style sheet code on every page if you do it by hand? Doesn't that defeat half the purpose of style sheets? Jerry -- http://www

Re: [PHP] Re: PHP connecting to FIlemaker Database

2001-01-19 Thread Jerry
y can just do it, without even knowing that what they're doing is called a "report" and requires a "front end". :*) Are there any easy to use SQL front ends for Unix? Jerry -- http://www.hoboes.com/jerry/ "Give a man a fish and you feed him for a day. Teach him to f

[PHP] Re: hotmail settings POP and SMTP under Mozilla

2001-12-28 Thread Jerry
It's not a PHP question, is it ? I didn't test it with Mozilla, but with MSIE it works: Go to your Hotmail Inbox, and bookmark it. For me it was working only with M$ Windows XP not previous versions... Jerry Ger wrote: > hi guys , > Does anybody know how to set up my mail read

[PHP] Connect to IBM DB2

2002-01-02 Thread Jerry
server without ODBC ? My config is: Web Server: IIS on windows 2000 Server Database Server: IBM DB2 V7.1 on windows 2000 Server PHP4 for windows Thanks. Jerry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

[PHP] Integer in PHP

2002-01-21 Thread Jerry
Hi, I'm new in PHP, coming from JavaScript. In JavaScript you had the function parseInt which was really useful. For example parseInt("2.05") will return 2... How can I do that in PHP ? Thanks. Jerry -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] Re: Speed comparison of PHP vs. PERL (not conclusive)

2002-06-03 Thread Jerry
program was working fine--Perl was doing its work almost instantaneously. Each language has its advantages; I tend to use PHP for web pages, but there are times I'd like to easily switch back and forth between PHP and Perl on the same page. Perl makes great filters. Jerry -- http://www.hob

[PHP] PHP and IBM DB2 / odbc_connect failed

2002-03-07 Thread Jerry
z@ in SQLConnect in /svr/jerry/web/myphppage.php" But on the Linux server from the command line I don't have any problem to connect to the database... Do you have any idea what is the problem and how to solve it ? Thanks. Jerry -- PHP General Mailing List (http://www.php.net/) To unsubscri

Re: [PHP] PHP and IBM DB2 / odbc_connect failed

2002-03-07 Thread Jerry
Which version of Apache did you installed to solve the problem ? "Alexander Weber" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Jerry wrote: > > I have IBM DB2 v7.2 FP5 on a Windows 2000 Server > > A Linux Web serv

[PHP] Re: PHP and IBM DB2 / odbc_connect failed

2002-03-07 Thread Jerry
Good news problem solved ! It was an incorrect modules somewhere and an error of settings (a missing backslash) by our Linux Expert. Jerry "Jerry" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello All, > I have IBM DB2 v7.

Re: [PHP] PHP and IBM DB2 / odbc_connect failed

2002-03-07 Thread Jerry
Good news problem solved ! It was an incorrect modules somewhere and an error of settings (a missing backslash) by our Linux Expert. Jerry "Dan Vande More" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I had the exact same problem too

[PHP] INSERT IMAGE INTO DATABASE / PHP

2002-03-14 Thread Jerry
38686 in SQLExecDirect in /svr/myfile.php But if I have $userfile="C:\myimage.jpg"; it will work (of course if the file is present on the C drive...) My question is How can I insert an image in the database without using its file name ? Can I directly send the image object to the database ? Thanks Jerry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] MSSQL DB Connect

2001-12-21 Thread Jerry
Hi I have PHP on windows 2000 web server I would like to remote to a MS SQL database on another web server. I tried something like: But it didn't work. Please help me. Jerry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP] fopen wierdness

2001-04-05 Thread Jerry
im trying to fopen a url with something like to following : fopen("something.com/something.txt", r); this returns a "0" now when i rename the doc to something.htm, ill get the contents? Jerry Bonner Systems Analyst / Web Development - emai

Re: [PHP] fopen wierdness

2001-04-05 Thread Jerry
was able to :p my bad. but it leads me to another question, is there a way to get the file size of something opened via httpd? Jerry Bonner Systems Analyst / Web Development - email: [[EMAIL PROTECTED]] icq : [34572902] phone: [507.344.1514] fax : [507.385.6017

[PHP] RE: iCal parser and importing iCal to database

2003-01-31 Thread Jerry Artman
Just drop on over to http://phpicalendar.sourceforge.net/nuke/ and I think you'll find what you are looking for. Jerry Artman Budget and Reimbursement [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Powerpoint presentations?!?

2003-02-06 Thread Jerry Artman
FICEx PowerPoint for OSX should be fairly scriptable. Apple's OSAX is very easy to understand and use. Also powerpoint plays quicktime and wm files. Might it be possible to build the file in that format and then have played back in PP? (or as alternative to PP)? Jerry Artman Budget and Rei

[PHP] Re: arguments against moving site from Linux/Apache/PHP server to Windows/IIS/PHP needed

2003-07-24 Thread Jerry Artman
s don't care to unload or compile from source, a "Server" option for $500 will give you all kinds of GUI interfaces to the settings, again- unlimited users. Jerry Artman Budget and Reimbursement [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscr

[PHP] RE: OT-best PDF creation tool

2002-09-30 Thread Jerry Artman
print services dialog, choose output and select pdf. High resolution. Method 3- Use Acrobat, you know, the real FULL application. It has all the bells and whistles you or your client could want, hyperlinks, forms, even authentication. Jerry Artman Budget and Reimbursement [EMAIL PROTECTED

[PHP] Re: publishing php > mysql website on cd-rom

2002-11-07 Thread Jerry Artman
Mike, What makes you think I would allow you to setup http services on my machine on the fly and potentially open it up to the outside world for attack? I consider that a bad idea. I would really need to know you very well to consider such privileges. Jerry Artman Budget and Reimbursement [EMAIL

[PHP] trans-id enabled not working?

2002-06-26 Thread Jerry Artman
rewriter intercepts the call? Jerry Artman interactivemedianet.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RE: trans-id enabled not working?

2002-06-27 Thread Jerry Artman
UPDATE! I tried NN7 last night and it works without the phpsessid. Perhaps I should go back to NN4.7 and try it? I'll double check the cookie settings on all. Since my project is for schools everyhting needs to work without cookies. Jerry Artman interactivemedianet.com -- PHP Ge

[PHP] Session Variables Disappear and Reappear

2003-12-29 Thread Jerry Kita
will see that that the user moves in and out of a logged in status. This will also show up on other pages but since this site is under construction it's safest to stick to the HOME page. Other possibly helpful information. Web Hosting site is BlueDomino. Thanks for your help. Jerry Kita -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Session Variables Disappear and Reappear

2004-01-01 Thread Jerry Kita
provide a different approach? Thanks and Happy New Year to everyone. Jerry Kita "Jerry Kita" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > New to PHP and I've checked previous posts and haven't seen similar problem. > Any ideas would be appreciated. > &

[PHP] more shopping cart crap

2001-01-09 Thread Jerry Lake
anywhere to get started, please let me know. Regards, Jerry Lake -- 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]

RE: [PHP] How can I get a random number

2001-01-10 Thread Jerry Lake
We may as we set it up in space to minimalize gravity and friction -can't be adding any predictable forces ;) Jerry Lake -Original Message- From: Philip Olson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 10, 2001 3:19 PM To: Cal Evans Cc: [EMAIL PROTECTED] Subject: RE: [PHP

RE: [PHP] How can I get a random number

2001-01-10 Thread Jerry Lake
I'll go ahead and get that investment money rolling, as soon as I see my return from mindpixel...haha! I hear that MIR can be had for about the cost of a decent case of vodka though Jerry Lake -Original Message- From: Philip Olson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, Janua

RE: [PHP] ik

2001-01-11 Thread Jerry Lake
l Jerry Lake -Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 11, 2001 3:37 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] ik k - Original Message - From: <[EMAIL PROTECTED]> Newsgroups: php.general Sent: Thursday, January 11, 200

[PHP] advise (MyCart)

2001-01-12 Thread Jerry Lake
sizes and toppings, if anyone has any ideas on how to go about what I'm trying I'd appreciate it. Jerry Lake -- 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] CodeCharge

2001-01-12 Thread Jerry Lake
Does anyone know if CodeCharge create SQL dump files as well as the code, or do you have to create them for your specific needs? Jerry Lake -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

[PHP] regex

2001-01-12 Thread Jerry Lake
is it possible with regex to change one or more text characters followed by a space into the same characters followed by a tab? Jerry Lake -- 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] regex

2001-01-12 Thread Jerry Lake
and how would I go about that? Jerry Lake -Original Message- From: Cynic [mailto:[EMAIL PROTECTED]] Sent: Friday, January 12, 2001 3:10 PM To: Jerry Lake; [EMAIL PROTECTED] Subject: Re: [PHP] regex yes At 23:54 12.1. 2001, Jerry Lake wrote the following

RE: [PHP] regex

2001-01-12 Thread Jerry Lake
bout 3500 records and I'd hate to have to do it by hand any ideas? Jerry Lake- [EMAIL PROTECTED] -Original Message- From: Cynic [mailto:[EMAIL PROTECTED]] Sent: Friday, January 12, 2001 3:25 PM To: Jerry Lake; [EMAIL PROTECTED] Subject: RE: [PHP] regex depends. is the set o

RE: [PHP] regex

2001-01-12 Thread Jerry Lake
pt that it adds the comma after every word that is followed by one space and not just the first occurance Jerry Lake -Original Message- From: Cynic [mailto:[EMAIL PROTECTED]] Sent: Friday, January 12, 2001 3:41 PM To: Jerry Lake; [EMAIL PROTECTED] Subject: RE: [PHP] regex looks like yo

[PHP] looping

2001-01-15 Thread Jerry Lake
; $personal_cost = $myrow["personal_cost"]; $small_cost = $myrow["small_cost"]; $large_cost = $myrow["large_cost"]; $category = $myrow["category"]; echo ""; echo ""; echo $name; echo ""; echo "".$cost.""; e

RE: [PHP] looping

2001-01-15 Thread Jerry Lake
Thanks, (Ignacio) I came up with this $counter++; if ($counter > "4") { $counter = "1"; echo ""; } Jerry Lake -Original Message- From: Ignacio Vazquez-Abrams [mailto:[EMAIL PROTECTED]] Sent: Monday, January 15, 2001 1:22 PM To: Je

[PHP] checkboxes into MySQL

2001-01-15 Thread Jerry Lake
I know this has been discussed, but it messing with me. in a script I'm working on I pull out an array of checkboxes from a database, how do I store what people select back to the DB all I end up with is the last selection of the array. Jerry Lake -Original Message- From: j

[PHP] checkboxes into MySQL(trying again)

2001-01-15 Thread Jerry Lake
uot;; echo "\r\n"; } if ($counter < 3) { while ($counter < 3) { echo " "; $counter++; } } echo ""; echo ""; // memory flush mysql_free_result($result2); //end topping section Jerry Lake- [EMAIL PROTECTED] Web Designe

[PHP] RE: if php is so great, why is it so hard to make it work?

2001-01-16 Thread Jerry Lake
That is probably a good way not to get much help however, there are install kits out there that do all of the work for you. phpTriad is one. Jerry Lake -Original Message- From: Serge Montmarquette [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 16, 2001 10:14 AM To: [EMAIL PROTECTED

RE: [PHP] string replace

2001-01-16 Thread Jerry Lake
Here is a bad way to do it, but it works Jerry Lake -Original Message- From: Tait Grove [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 16, 2001 12:01 PM To: PHP GENERAL Subject: [PHP] string replace How can I strip everything past a certain character in a string? i.e.: $foo

[PHP] MySQL and Array Problem

2001-01-17 Thread Jerry Lake
back as 1 and if I try to implode it it says Warning bad argument to implode() and if I do this echo "".$name.""; $name_test = explode("," $name); echo $name_test; the names item1,item2,item3 is returned, but I get a parse error on the explode, what am I missing...? Jerr

RE: [PHP] MySQL and Array Problem

2001-01-17 Thread Jerry Lake
Never mind, I caught my syntax error it works fine now. Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: Jerry Lake [mailto:[EMAIL PROTECTED]] Sent: Wednesday

RE: [PHP] Ultimate Editor

2001-01-18 Thread Jerry Lake
I just installed Bluefish a few days ago. I haven't had a lot of time to mess with it, but it seems like a Linux variety of homesite (which is great with me) I'll give it a week or two and see what I think. anyone else? Jerry Lake -Original Message- From: Scott Gerhardt [mai

[PHP] date format for MySQL

2001-02-21 Thread Jerry Lake
I have a field in my MySQL DB that is "DATE" on the form that populates this field, various people will by typing in dates in various formats how to I convert say 2/21/01 or 02-21-2001 etc... to 2001-02-21(MySQL Format) Jerry Lake- [EMAIL PROTECTED] Web Desig

[PHP] archive location

2001-02-26 Thread Jerry Lake
What is the newsgroup archive location ? marc.themaesgroup.something ? Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

[PHP] php quit working

2001-02-26 Thread Jerry Lake
I just installed php as an apache DSO module on the first try of a phpinfo(); it worked just as it should, then I loaded phpmyadmin and now when I make a request for a php file it tries to download, my httpd.conf file seems to be in order...any ideas? Jerry Lake- [EMAIL PROTECTED

RE: [PHP] php quit working

2001-02-26 Thread Jerry Lake
I used a .php extension which phpmyadmin uses also it is rather odd, it worked until I loaded phpmyadmin (i unloaded it, but nothing fixed) Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com

[PHP] regex help

2001-02-27 Thread Jerry Lake
how do I select the first space after some alpha-numeric characters? I can ^\D\s to get the characters and the space, but how can I select the space only? Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http

[PHP] regex frustration

2001-02-28 Thread Jerry Lake
will select the first name and the space, but I just need the space. any ideas? Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e

[PHP] on the list yesterday regarding mysql time

2001-03-07 Thread Jerry Lake
? Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: george [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 07, 2001 1:51 PM To: [EMAIL PROTECTED] Subject: Re: [PHP

[PHP] RE: on the list yesterday regarding mysql time

2001-03-07 Thread Jerry Lake
never mind anything below my signature I forgot to erase it, damn non-thread capable email... Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] on the list yesterday regarding mysql time

2001-03-07 Thread Jerry Lake
Thanks, that worked great. Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: John Huggins [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 07, 2001 2:49 PM To

[PHP] populate select box with contents of a file?

2001-03-07 Thread Jerry Lake
I would like to be able to populate the options of a select box with the contents of my images directory online so I can select the image I want to go with the form I am filling out. what functions do I need to look into to figure this one out? Jerry Lake- [EMAIL PROTECTED] Web

RE: [PHP] populate select box with contents of a file?

2001-03-08 Thread Jerry Lake
echo "\n\r"; } } echo ""; closedir($handle); ?> http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: Sean R. Bright [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 07, 2001 4:50 PM To: 'Jerry Lake&

RE: [PHP] populate select box with contents of a file?

2001-03-08 Thread Jerry Lake
Thanks, that works great. Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: Joe Sheble (Wizaerd) [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 08, 2001 10:13 AM

RE: [PHP] $HTTP_POST_VARS

2001-03-08 Thread Jerry Lake
You're not setting a value for the first variable ie.."Name" unless you put something in the text box to represent the variable it will come across as empty. Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier On

RE: [PHP] RNV PHP=o.k.....Apache=o.k..... So... What the "#$$% : )

2001-03-08 Thread Jerry Lake
view the php file through localhost on your browser with apache running http://localhost/whateverfile.php make sure the file is somewhere in your document root. Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http

[PHP] file upload tutorial.

2001-03-09 Thread Jerry Lake
Anyone know where I can find a file upload tutorial ? Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

RE: [PHP] file upload tutorial.

2001-03-09 Thread Jerry Lake
With the info in the manual (thanks) I keep getting this error Warning: Unable to create '/www/htdocs/uploads': Is a directory in /www/workbox/htdocs/upload.php on line 4 I have the directory chmoded to 777 what is my problem, aside from general idiocy... Jerry Lake- [EMAIL

RE: [PHP] Advanced PHP

2001-03-09 Thread Jerry Lake
The chicken did. as the Chicken is an actual chicken and the egg is a potential chicken. Actuality precedes potentiality Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message

RE: [PHP] Advanced PHP

2001-03-09 Thread Jerry Lake
I'm nearly certain they came from smallish chicken shaped rocks Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: Rick St Jean [mailto:[EMAIL PROTECTED]]

[PHP] upload file problems

2001-03-12 Thread Jerry Lake
Using this code I keep getting the following error. the directory exists and is chmoded to 777, what am I doing wrong ? Warning: Unable to create '/www/workbox/htdocs/audio': Is a directory in /www/workbox/htdocs/upload.php on line 4 Jerry Lake- [EMAIL PROTECTED] We

[PHP] write form data to a text file

2001-03-13 Thread Jerry Lake
How can I write the form data a user fills out and send it to a text file? Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: Jordan Elver [mailto:[EMAIL PROTECTED

RE: [PHP] write form data to a text file

2001-03-13 Thread Jerry Lake
thus saving the time of re-typing all of the form information. when my form gets filled out I need to be able to create a new file, write text to it from the variables and then email it to a CSR any ideas on where to start with this are greatly appreciated. Thanks, Jerry Lake- [

[PHP] attach file from server to an email

2001-03-13 Thread Jerry Lake
Ok, I created a form handler that writes the .ini file that I need for an auto-import, now what should I look at attach it to an email the file is just ascii text Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http

[PHP] email a file from server

2001-03-14 Thread Jerry Lake
Is there an easy way to email a file that resides on the server to a given email address ? Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] How do you keep your scripts secure?

2001-03-14 Thread Jerry Artman
Actually, I think the best thing is to offer good service and value to your customer . Then why would anyone want to invest the time to decompile your work to change it? On 3/14/01 8:30 PM, "Jack Dempsey" <[EMAIL PROTECTED]> wrote: > Murph wrote: >> >> Hi. >> >> So, I've written all this nif

[PHP] where to learn to make a shopping cart

2001-03-20 Thread Jerry Lake
What are some good resources I can look at to learn how to make a shopping cart, that will function with php3/MySQL ? I know of the one at Devshed, but any other resources are certainly appreciated. Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http

RE: [PHP] where to learn to make a shopping cart

2001-03-20 Thread Jerry Lake
Now that I take a look, the one at devshed assumes PHP4... of course. and that would be great if I could get my sysadmin to upgrade. Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original

[PHP] Reynolds & Reynolds - php use

2001-04-18 Thread Jerry Lake
php as well. if any one has any experience with anything remotely like this, please let me know Thanks, Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: Plutarck

[PHP] php install issues on IIS

2001-04-23 Thread Jerry Lake
other executable program from a directory that does not allow programs to be executed. Please contact the Web server's administrator if the problem persists. Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pa

RE: [PHP] cell iterations in loop

2001-04-26 Thread Jerry Lake
Thanks, that worked with the removal of the first " Jerry Lake- [EMAIL PROTECTED] Interface Engineering Technician Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: Jack Dempsey [mailto:[EMAIL PROT

RE: [PHP] cell iterations in loop

2001-04-26 Thread Jerry Lake
d be. how can I make the loop echo enough " " lines to show empty cells instead of blank space regardless of the number of cells I am creating ? Jerry Lake- [EMAIL PROTECTED] Interface Engineering Technician Europa Communications - http://www.europa.com Pacifier Onl

RE: RE: [PHP] cell iterations in loop

2001-04-26 Thread Jerry Lake
ength is going to be on a dynamic page such as showing "x" amount of images from a folder. I need for the loop to know how many " " to echo out at the end depending on the $length; I apologize if I am not explaining this very well. I usually am quite concise. Jerry Lake

RE: RE: RE: [PHP] cell iterations in loop

2001-04-26 Thread Jerry Lake
{ echo "EMPTY\n"; } } #also added in if($x % $columns != 0) { #then we know that it did not end completely, so echo you're final echo "\n"; } ?> Jerry Lake- [EMAIL PROTECTED] Interface Engineer

RE: [PHP] apache toolbox

2001-05-03 Thread Jerry Lake
Just out of curiosity, what problems did you have ? Jerry Lake- [EMAIL PROTECTED] Interface Engineering Technician Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: Chris Schneck [mailto:[EMAIL PROTECTED

[PHP] install issue with 4.0.5

2001-05-03 Thread Jerry Lake
t bin]# ./apachectl start Syntax error on line 205 of /usr/local/apache/conf/httpd.conf: Cannot load /usr/local/apache/libexec/libphp4.so into server: undefined symbol: uncompress ./apachectl start: httpd could not be started Jerry Lake- [EMAIL PROTECTED] Interface Engineering Technician E

[PHP] user authentication

2001-05-09 Thread Jerry Lake
Does anyone know of a good user authentication/sessions tutorial for php 4? I've looked through the ones at phpbuilder and they are not quite as in-depth as I would like. Jerry Lake- [EMAIL PROTECTED] Interface Engineering Technician Europa Communications - http://www.europ

[PHP] ereg issues

2001-05-10 Thread Jerry Lake
I'm feeling a bit stupid today how do I truncate a string to the first two [a-zA-Z] characters ? this sure isn't working $test = "jerry"; $test = ereg_replace("^\w*", "^[a-zA-Z]{2}" ,$test); Jerry Lake Interface Engineering Technician Europa Communi

RE: [PHP] ereg issues

2001-05-10 Thread Jerry Lake
Cool, thanks Jerry Lake Interface Engineering Technician Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jack Dempsey Sent: Thursday, May 10, 2001 12:39 PM To

[PHP] coding brain fade

2001-05-10 Thread Jerry Lake
umm, what am I missing ? I can't get the userfile to name itself when copying... "; echo $userfile; copy($userfile, "c:/apache/htdocs/".$userfile); } else { echo "Possible file upload attack: filename '$userfile'."; } ?> Jerry La

[PHP] cell iterations in loop

2001-04-26 Thread Jerry Lake
} else { echo "".$x."\n"; } } ?> Jerry Lake- [EMAIL PROTECTED] Interface Engineering Technician Europa Communications - http://www.europa.com Pacifier Onlin

RE: [PHP] Image problem

2001-05-15 Thread Jerry Lake
This is how I fixed that same issue in the head of my page if (ereg ("new", $PHP_SELF)) { $header = " then call the header in in the appropriate place in your html Jerry Lake Interface Engineering Technician Europa Communications - http://www.europa.com Pacifier On

[PHP] again with the regex

2001-05-15 Thread Jerry Lake
I hate to keep asking regex stuff, but it is really evasive for me.. I'm pulling phone numbers out of a DB in the format of 1234567890, I would like to format them like (123) 456-7890 or something else that at least breaks them up a bit. any help is appreciated, Thanks, Jerry Lake Inte

RE: [PHP] again with the regex

2001-05-15 Thread Jerry Lake
Thanks folks, much better now. Jerry Lake Interface Engineering Technician Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: Johnson, Kirk [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 15, 2001 3:52 PM To: [EMAIL

RE: [PHP] Discussion board

2001-05-22 Thread Jerry Lake
I like Phorum http://phorum.org/ Jerry Lake Interface Engineering Technician Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: James Atkinson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 22, 2001 12:23 PM To: Thomas

[PHP] RE: Does anyone use UltrDev?

2002-03-25 Thread Jerry Artman
NATIVE! Jerry Interactivemedianet.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] php code to fax

2001-10-22 Thread Jerry Lake
I could be wrong, but it would seem easiest to have an an email to fax gateway and use your php to send mail Regards, Jerry Lake Interface Engineering Technician -Original Message- From: Glenn Antoine [mailto:[EMAIL PROTECTED]] Sent: Monday, October 22, 2001 6:39 AM To: [EMAIL

RE: [PHP] Portland, Oregon

2001-10-25 Thread Jerry Lake
Rasmus, I'm not sure how I missed that, I would have liked to attend. where were you ? Jerry Lake -[EMAIL PROTECTED] Interface Engineering Technician -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 23, 2001 3:54 PM To: Richard Ba

RE: [PHP] Hello $variable, whats your name?

2001-03-22 Thread Jerry Lake
$HTTP_POST_VARS Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: JCampbell [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 12, 2000 4:06 PM To: Main PHP List

RE: [PHP] sanity check please

2001-03-30 Thread Jerry Lake
you can put you database connection in a file below the web root and include it into the script. that way it isn't visible in the source. Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifie

RE: [PHP] How to limit a WHILE statement?

2001-04-02 Thread Jerry Lake
Limit it in your query statement i.e. SELECT * FROM whatever LIMIT 1,20 Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: Bob Stone [mailto:[EMAIL PROTECTED]] Sent

RE: [PHP] Warning: 1 is not a valid File-Handle resource

2001-04-03 Thread Jerry Lake
I had that same warning the other day and the problem was a slight syntax error in my query statement. Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: WK [mailto

  1   2   3   >