Re: [PHP] Re: pdf information..

2003-07-16 Thread Miranda, Joel Louie M
Sven, thanks for the info! sven [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... a pdf-page can have almost every format you want. originally you work with postscript-dots, where 72 dots are 1 inch. it's easy from that point to calculate from metric system, where 1 inch is

[PHP] ImageTTFText for mac? win? linux?

2003-07-13 Thread Miranda, Joel Louie M
Im confused.. I know I have TrueType support on php. Now I wonder where will I put my fonts into my server? Like verdana, etc just a sample. Does this means even macintosh truetype fonts I can also load in? -- Thank you, Louie Miranda ([EMAIL PROTECTED]) -- PHP General Mailing List

[PHP] Eregi filtering..

2003-07-07 Thread Miranda, Joel Louie M
elseif (eregi(a-ZA-9, $v_tel_filter)) { echo '$v_tel_filter' Telephone Number Contains words; } else { im looking how to verify numbers alone and dash - can that be possible? I have tried using a-ZA-9 but did not work. any ideas? thanks, louie -- Thank you, Louie -- PHP General

RE: [PHP] Eregi filtering..

2003-07-07 Thread Miranda, Joel Louie M
-Original Message- From: Ralph [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 08, 2003 8:20 AM To: Miranda, Joel Louie M; [EMAIL PROTECTED] Subject: RE: [PHP] Eregi filtering.. Here is one of doing this: if(strrpos($v_tel_filter,' ') 0 || strspn($v_tel_filter, 0123456789-) != strlen

[PHP] Image verification problem..

2003-07-07 Thread Miranda, Joel Louie M
Im trying the image verification thing I think everything goes well for the generation of the image but when it comes to verifying the text when I typed in any text it just generates and process the form, but when I leave it blank it says the error. I think the session variables for $new_string is

RE: [PHP] Image verification problem..

2003-07-07 Thread Miranda, Joel Louie M
- From: Ralph [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 08, 2003 10:02 AM To: Miranda, Joel Louie M; [EMAIL PROTECTED] Subject: RE: [PHP] Image verification problem.. You should register session for 'new_string' after assigning a value to it. So try placing session_start(); session_register

RE: [PHP] Image verification problem..

2003-07-07 Thread Miranda, Joel Louie M
, $white); ImagePNG($im, verify.png); ImageDestroy($im); -- end // first.php -- -- Thank you, Louie -Original Message- From: Ralph [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 08, 2003 10:02 AM To: Miranda, Joel Louie M; [EMAIL PROTECTED] Subject: RE: [PHP] Image verification problem.. You

RE: [PHP] Image verification problem..

2003-07-07 Thread Miranda, Joel Louie M
- From: Miranda, Joel Louie M Sent: Tuesday, July 08, 2003 10:31 AM To: Miranda, Joel Louie M; 'Ralph'; '[EMAIL PROTECTED]' Subject: RE: [PHP] Image verification problem.. Well, does post has anything to do with this? I have this code running on a post and I just hide it as a variable and pass it over

RE: [PHP] Image verification problem..

2003-07-07 Thread Miranda, Joel Louie M
I just wonder, how do you make it fuzzy? I mean the image? On my book, its all plain but how about making it fuzzy? -- Thank you, Louie -Original Message- From: Miranda, Joel Louie M Sent: Tuesday, July 08, 2003 10:55 AM To: 'Ralph'; '[EMAIL PROTECTED]' Subject: RE: [PHP] Image

[PHP] Wrong parameter count for fgets

2003-07-07 Thread Miranda, Joel Louie M
Warning: Wrong parameter count for fgets() in I had this error on of my scripts, any ideas on this part? How come this error occur? -- Thank you, Louie -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Optional form variables (IDEA?)

2003-07-06 Thread Miranda, Joel Louie M
Yes. Try it first. Let us know if (and how) it doesn't work. Its working, just having a hard time w/ multiple values -- Thank you, Louie -Original Message- From: - Edwin - [mailto:[EMAIL PROTECTED] Sent: Thursday, July 03, 2003 4:44 PM To: Miranda, Joel Louie M Cc: [EMAIL PROTECTED

[PHP] Passing multiple form values in if statement

2003-07-06 Thread Miranda, Joel Louie M
I have a form which passes information and generates a user submitted field. Its actually a business card template program, on this template program I have Some required fields and non required fields which I while use telephone extension And webaddress url options. Now my problem is if they

[PHP] Optional form variables (IDEA?)

2003-07-03 Thread Miranda, Joel Louie M
Hello, im doing a form that when you pass it will generate a preview report. My problem is some fields are optional the optional fields are 5. And for those fields I need to make it fit when it generate what idea or codes can you suggest? Ex, a businesscard preview form. When it generates it will

RE: [PHP] 2values on form, help in catching as one.

2003-07-02 Thread Miranda, Joel Louie M
! -- Thank you, Louie -Original Message- From: Mark [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 10:41 PM To: Miranda, Joel Louie M; '[EMAIL PROTECTED]' Subject: Re: [PHP] 2values on form, help in catching as one. It's not clear what you're trying to do. If the values

[PHP] Image Verification (On Submit)

2003-07-01 Thread Miranda, Joel Louie M
Hello, Can someone give me a suggestion or a howto where could I get some idea on how to do image verification? Like on yahoo.com signup where you need to enter the text on the image to process your order. -- Thanks, Louie -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] 2values on form, help in catching as one.

2003-07-01 Thread Miranda, Joel Louie M
I have this php code (below), My form passes 2 values w/c is TemplateOne and TemplateTwo I was wondering how could I make that in php to catch the value as one only? I tried this and it didn't work. But if the value is just one the case display it. Any ideas? ?php $v_template =

RE: [PHP] Passing form value into another form value?

2003-06-30 Thread Miranda, Joel Louie M
Hello, My script is working now. I tried a different approach -- Louie -Original Message- From: Miranda, Joel Louie M Sent: Monday, June 30, 2003 1:49 PM To: 'Leif K-Brooks' Cc: 'Tom Rogers'; '[EMAIL PROTECTED]' Subject: RE: [PHP] Passing form value into another form value? Dude

[PHP] Using Different Fonts on Web Via generated Image

2003-06-30 Thread Miranda, Joel Louie M
Hello, Can I generate an image using a different font? For example my font will be Anonymous and we all know that on the client side if you don't have the anonymous font it will display another font. But can we generate an image using that font via php? Thanks -- Louie -- PHP General

[PHP] Passing form value into another form value?

2003-06-29 Thread Miranda, Joel Louie M
Im a beginner and was hoping if you could help me on passing a value into a form and into another form? Im not sure what do you call that sequence but I hope you could get me into a howto section to do that or give me something nice. Thanks -- Louie -- PHP General Mailing List

RE: [PHP] Passing form value into another form value?

2003-06-29 Thread Miranda, Joel Louie M
-Original Message- From: Tom Rogers [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 12:43 PM To: Miranda, Joel Louie M Cc: '[EMAIL PROTECTED]' Subject: Re: [PHP] Passing form value into another form value? Hi, Monday, June 30, 2003, 2:41:59 PM, you wrote: MJLM Im a beginner

RE: [PHP] Passing form value into another form value?

2003-06-29 Thread Miranda, Joel Louie M
Dude, As far as my first email is concerned im a newbie, so please bear w/ me if you want to. -- Louie -Original Message- From: Leif K-Brooks [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 1:32 PM To: Miranda, Joel Louie M Cc: 'Tom Rogers'; '[EMAIL PROTECTED]' Subject: Re: [PHP

[PHP] Multiple Submission of the Same Form

2003-06-19 Thread Miranda, Joel Louie M
Hello, Any ideas on this? I have a form some users try and try to reload and it floods my mailbox Thanks, Louie -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Multiple Submission of the Same Form

2003-06-19 Thread Miranda, Joel Louie M
Do you have examples? -Original Message- From: Mark Tehara [mailto:[EMAIL PROTECTED] Sent: Friday, June 20, 2003 11:33 AM To: Miranda, Joel Louie M Subject: Re: [PHP] Multiple Submission of the Same Form Use a Databace and have a DateStamp String and an IP string, then when the post

[PHP] PHPBB and EZBOARD.COM

2003-06-08 Thread Miranda, Joel Louie M
Hello, Has anyone got an idea how to migrate the things in ezboard.com to phpbb forum? Thanks, Louie -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHPBB and EZBOARD.COM

2003-06-08 Thread Miranda, Joel Louie M
Got an idea. Brb. Louie -Original Message- From: Miranda, Joel Louie M Sent: Monday, June 09, 2003 8:04 AM To: [EMAIL PROTECTED] Subject: [PHP] PHPBB and EZBOARD.COM Hello, Has anyone got an idea how to migrate the things in ezboard.com to phpbb forum? Thanks, Louie -- PHP General

[PHP] status of current online users

2003-06-08 Thread Miranda, Joel Louie M
Hello, I was wondering how did some people do that they can display current active users on a webpage? I was hoping to find even simple info about this even on a first site basis only. Any ideas and howto's/docs will be great. Thanks, Louie -- PHP General Mailing List (http://www.php.net/) To

[PHP] Is Session a Cookie?

2003-06-06 Thread Miranda, Joel Louie M
Hello, Im quite confused on how things work here. Is session a cookie also? Cookie stores data On your harddrive, does session stores also? -- Thanks, Louie -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Is Session a Cookie?

2003-06-06 Thread Miranda, Joel Louie M
Hey, I got it. 2 types of cookies 1) session cookies - expire at the end of the session 2) persistent cookies - do not expire at the end of the session Thanks, Louie -Original Message- From: Miranda, Joel Louie M Sent: Friday, June 06, 2003 8:39 AM To: [EMAIL PROTECTED] Subject: [PHP

[PHP] Php handling apache's error directive?

2003-06-06 Thread Miranda, Joel Louie M
Can I use php to be apache's error directive? I mean, im trying to change apache's error directive But at the same time I can only change the page and couldn't see what error it was, I can send it only to a page with an error saying 404, etc but I can't add what file did he type in the url. Any

[PHP] PHP + MySQL Free Shopping Cart

2003-06-06 Thread Miranda, Joel Louie M
Hello, Im trying to find a free php+mysql shopping cart, I have tried oscommerce but coudlnt edit some of the scripts. Does anyone know an php script that is very customizable and has a lot features too? And ofcourse its free. Thanks, Louie -- PHP General Mailing List (http://www.php.net/)

RE: [PHP] Php handling apache's error directive?

2003-06-05 Thread Miranda, Joel Louie M
Its working, thanks! http://lightning.prohosting.com/~relsom/variables.shtml -- Louie -Original Message- From: Leif K-Brooks [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 10:07 AM To: Miranda, Joel Louie M Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Php handling apache's error