[PHP] Re: Authorize.net example

2002-03-11 Thread Jeremy Reed
the post data and you can, of course, build this string on the fly with form data etc. Pretty simple once you know how to do it. Best regards, Jeremy Reed David Johansen [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Could someone tell me where I c

[PHP] unable to load dynamic library etc. etc.

2002-02-21 Thread Jeremy Reed
I keep getting this error message and cannot figure out why. The extension_dir is set correctly in the php.ini, I have put the .dlls into every conceivable directory I can think of and nothing seems to work. Anybody else had and fixed this problem? Thanks, Jeremy -- PHP General Mailing

[PHP] using sendtohost on a secure site

2002-02-20 Thread Jeremy Reed
to a secure site (https). I looked through some of the php documentation and couldn't find anything about manually encrypting the data to send or anything like that. Any help would be greatly appreciated. Thanks, Jeremy Reed -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] PHP question regarding Cold Fusion

2002-01-11 Thread Jeremy Reed
response. Is there anything in PHP that can do this same kind of thing? Any help would be appreciated. Best regards, Jeremy Reed -- 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

[PHP] PHP/SQL login problems

2002-01-07 Thread Jeremy Reed
that might be affecting it is the ownership. The owner of the DB is 'dbo'--because this is a straight copy of a database on an offsite server. Any help would be greatly appreciated. Best regards, Jeremy Reed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

[PHP] Re: Login and select Query in Mysql

2001-12-27 Thread Jeremy Reed
. authenticateUser($cookie_user,$cookie_passwd); Hope this helps. Best regards, Jeremy Reed Jack [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Dear all I want to provide a login page to the user when they want to visit my website, i got no idea what should i used.

[PHP] Re: File Upload Question...

2001-12-27 Thread Jeremy Reed
Your first question. To see that the file uploaded successfully using the web browser, one would have to have access to your computer's file system. In her book, she used this merely as an example to show that the file had, indeed, been uploaded. This should not be used as something that you

[PHP] Re: storing line breaks in a database

2001-12-21 Thread Jeremy Reed
tag instead. If you were retrieving them for the VB program, they would display correctly anyway. The character for the line break in normal text files is '\n', the line break for VB and other windows files is '\r\n' (2 characters). Best regards, Jeremy Reed Robin McKenzie [EMAIL PROTECTED] wrote

[PHP] Re: arrays

2001-12-21 Thread Jeremy Reed
Well, to do this you'll just have to write a loop that takes in every identifier=value pair and converts them into an array of values attached to the tag name. You'll have to parse the input character by character. The following pseudo code might help to explain a bit: // input[x] refers to the

[PHP] Re: arrays

2001-12-21 Thread Jeremy Reed
Oh, and don't forget to check for the trailing tags i.e. the /report etc. Jeremy Reed [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Well, to do this you'll just have to write a loop that takes in every identifier=value pair and converts them into

[PHP] Re: Antialiasing with GD..?

2001-12-13 Thread Jeremy Reed
Antialiasing is done on a pixel by pixel basis. I'm guessing that you don't want to deal with the lines on that kind of basis, considering that it's a whole lot of work. Check the documentation, a lot of graphics engines/utilities include a way draw antialiased lines. However, if you're hell

[PHP] Re: Sending letter with attaching of the file

2001-12-13 Thread Jeremy Reed
You cannot attach a file using the mail() function in PHP. You will have to use a SMTP PHP class or another MIME enabled class to use attachments. Jeremy Alexandr Klaus [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Help me ! For sending a letter I using the

Re: [PHP] Can i do this?

2001-12-13 Thread Jeremy Reed
However, in your if statement, you need to nest your statements with parenthesis. Jack Dempsey [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... didn't check your code specifically, but you can definitely have arrays nested inside of arrays...to see how to print

[PHP] Re: Date Formatting/Reading

2001-12-13 Thread Jeremy Reed
']; ///get date from database if ((($month - $dbmonth) == 1) ($mday == $dbday)) { ///time to renew ///also take into account the transition from December to January, so $month-$dbmonth == -12 } -END- Best regards, Jeremy Reed Phpgalaxy.Com [EMAIL PROTECTED] wrote in message [EMAIL

[PHP] Re: Die

2001-12-11 Thread Jeremy Reed
Use IF statements to group code, and only use exit() statements when you want to stop execution/parsing. Max [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi, If I use die or exit() it break execution of php script but also browswer stop parsing html code.

[PHP] Re: PHP Forms and String Limitations

2001-12-10 Thread Jeremy Reed
>news:[EMAIL PROTECTED]... Jeremy Reed [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... This is the problem: The user tries to submit a news article of 2+ pages (approx 4400 characters) but the article gets truncated to about 4050 characters. Is

[PHP] Re: setting up a user login with PHP

2001-12-10 Thread Jeremy Reed
the cookie values as the parameters to the function instead of the form values. Hope this helps. Best regards, Jeremy Reed Mark Ward [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I've got a mySQL database with usernames and passwords. What's the best way

[PHP] Re: Setting Cookies

2001-12-10 Thread Jeremy Reed
You are getting that error because you have sent output to the browser BEFORE you try to set the cookie information. When dealing with cookies, it is important to do all processing before sending any output to the browser. Jeremy Reed Steve Osborne [EMAIL PROTECTED] wrote in message

[PHP] PHP Forms and String Limitations

2001-12-06 Thread Jeremy Reed
article of 2+ pages (approx 4400 characters) but the article gets truncated to about 4050 characters. Is there some sort of limitation on PHP variables that is causing this? Thanks! Best regards, Jeremy Reed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL