[PHP] mail()

2002-12-16 Thread Edward Peloke
Is there anything special you have to do to send a link in an e-mail with the mail function? I used the mail function this weekend and set the mail contents like this: $mailcontents="Thank you for registering with us /n" ."http://www.oursite.com";; But in the actual e-mail sent, the

[PHP] php setup

2002-12-16 Thread Edward Peloke
I recently got a laptop and was in the process this weekend of installing, php, apache, mysql etc. One thing I noticed is when I ran the code (that works fine everywhere else) on the laptop, I got errors of 'Variable not defined' and I have pictures that just won't show. I am not sure if this is

RE: [PHP] php setup

2002-12-16 Thread Edward Peloke
it is turned on -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Monday, December 16, 2002 2:03 PM To: Edward Peloke Cc: php Subject: Re: [PHP] php setup Turn on register_globals in your php.ini file. On Mon, 16 Dec 2002, Edward Peloke wrote: > I recently go

RE: [PHP] php setup

2002-12-16 Thread Edward Peloke
thanks, I will give that a shot. -Original Message- From: Joseph W. Goff [mailto:[EMAIL PROTECTED]] Sent: Monday, December 16, 2002 2:25 PM To: php-general; Edward Peloke Subject: Re: [PHP] php setup You have the error_reporting set at E_ALL in the ini file. Set it to E_ALL & ~E_NO

[PHP] airport picker

2002-12-17 Thread Edward Peloke
I am writing a php site where I need to add an 'airport code' picker. What is the best way to handle this? I don't want to simply populate a select box from columns in the db because there are over 7000 rows in the db and it would take the user forever to go through them all. Is there a way that

RE: [PHP] Multiple Files Upload

2002-12-17 Thread Edward Peloke
when you say not but selecting one by one do you mean you don't want to select one, then select another, etc and then hit submit to upload them all? Do you want to browse to the file, highlight several, and then upload? Eddie -Original Message- From: Hynek Semecky ME [mailto:[EMAIL PROTE

RE: [PHP] Multiple Files Upload

2002-12-17 Thread Edward Peloke
yep, this can be done -Original Message- From: Hynek Semecký ME [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 17, 2002 9:58 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] Multiple Files Upload Even if I select one by one and then hit UPLOAD ? Hynek -Original Message- From:

RE: [PHP] Multiple Files Upload

2002-12-17 Thread Edward Peloke
t: Tuesday, December 17, 2002 10:09 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] Multiple Files Upload Could you give me an idea ? Hynek -Original Message----- From: Edward Peloke [mailto:[EMAIL PROTECTED]] Sent: 17. prosince 2002 16:28 To: [EMAIL PROTECTED] Subject: RE: [PHP] Multiple Files Up

RE: [PHP] nested if in a for statement

2002-12-17 Thread Edward Peloke
I just took the code and changed it to check two values, both of the values are there but it returned the message, I put in some prints and it appears it failed on '2' having only two values to check, 0 and 1, I would say it is doing another check after it has exceeded the number of variables and t

[PHP] mail()

2002-12-19 Thread Edward Peloke
Hello all, I am using the following code but when I view the sent e-mail (in my yahoo account) the link info is all plain text. I see the Activate Account"; mail($email,'Thanks',$mailcontent,"From: aircharterunited.com"); -- PHP General Mailing List (http://www.php.net/) To unsu

RE: [PHP] Re: mail()

2002-12-19 Thread Edward Peloke
: Content-type: text/plain Mike "Edward Peloke" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello all, > > I am using the following code but when I view the sent e-mail (in my yahoo > account) the link info is all plain

RE: [PHP] date part

2002-12-19 Thread Edward Peloke
I used a javascript I found online in my php page. Click on the boxes next to the date fields: http://www.aircharterunited.com/pages/submit_bid.php This way, I know the format of the date when it is entered and I can pull out any part needed. Eddie -Original Message- From: Diana Castill

RE: [PHP] date part

2002-12-19 Thread Edward Peloke
, December 19, 2002 9:38 AM To: Edward Peloke Cc: Diana Castillo; [EMAIL PROTECTED] Subject: RE: [PHP] date part I just tried that script, for me under Linux with Mozilla and Netscape, I had to try 5 times before I could move the mouse from the button to the menu fast enough, every other time

RE: [PHP] Random include???

2002-12-19 Thread Edward Peloke
Won't this work? $random=rand(1,5); print ""; include("folio_$random.php"); -Original Message- From: Benjamin Trépanier [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 9:46 AM To: [EMAIL PROTECTED] Subject: [PHP] Random include??? Hi, I'm a newbie in php so sorry

RE: [PHP] date part

2002-12-19 Thread Edward Peloke
Sorry ADAM, didn't mean to call you Allan, I apologize! -Original Message- From: Edward Peloke [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 10:11 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] date part Thanks Allan! That is good to know. It is just a script t

RE: [PHP] Re: offline application

2002-12-19 Thread Edward Peloke
Would it be possible to use something like this to create a page that the user can open up on their machine that would transfer data from an access file on their machine to a mysql db on my server? Thanks, Edie -Original Message- From: Philippe Saladin [mailto:[EMAIL PROTECTED]] Sent: Thu

RE: [PHP] Re: offline application

2002-12-19 Thread Edward Peloke
This is pretty much what I want with as little work to the user as possible. -Original Message- From: Philippe Saladin [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 12:16 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Re: offline application > Would it be possible to use som

RE: [PHP] Re: offline application

2002-12-19 Thread Edward Peloke
using php, can I extract data from an access file? -Original Message- From: Philippe Saladin [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 12:16 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Re: offline application > Would it be possible to use something like this to create

[PHP] odbc

2002-12-19 Thread Edward Peloke
Ok, I am lost now, I am just trying to read the documentation on odbc...here is what I have so far. This seems to work...or at least not give any errors. How do I know get to the result set in the select statement to move this data somewhere else? I just want to get the entire result set so I can

RE: [PHP] Re: mail()

2002-12-20 Thread Edward Peloke
mail() You need to set the correct header type: Content-type: text/html otherwise it defaults to: Content-type: text/plain Mike "Edward Peloke" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello all, > > I am using the fol

[PHP] login

2002-12-20 Thread Edward Peloke
Ok, Newbie Question. I know have a login and registration page on my website. What is the best way to check to see if the users have logged in before they access the other pages? SHould I add to each of the other url's ?clientid='' and if it is an empty string I know they haven't logged in?

RE: [PHP] login

2002-12-20 Thread Edward Peloke
no, I mean logged into the current browser session. I have never used cookies so I will look into that in the php docs. Thanks, Eddie -Original Message- From: Rick Emery [mailto:[EMAIL PROTECTED]] Sent: Friday, December 20, 2002 9:00 AM To: Edward Peloke; [EMAIL PROTECTED] Subject: Re

RE: [PHP] Re: mail()

2002-12-20 Thread Edward Peloke
AIL PROTECTED]> To: "Edward Peloke" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, December 20, 2002 8:04 AM Subject: Re: [PHP] Re: mail() Actually, you don't need to send this as an html hyperlink. Simply using: http:\\www.aircharterunited.com\pages\activate_accou

[PHP] cookies

2002-12-20 Thread Edward Peloke
I am setting a cookie with this code: 0){ $myrow2 = mysql_fetch_array($result2); $clientid=$myrow2["id"]; $fname=$myrow2["fname"]; $cookievalue=md5($uname.$password); setcookie("aircharteruser",$cookievalue,time()+1800,"/"); }

[PHP] php-java formatting

2002-12-23 Thread Edward Peloke
Hello all, I am using a javascript alert box in one of my php pages to tell the user they didn't fill out all the required fields. As I check each field, if it is blank I am adding to the alert string: $alertstring="Missing Mandatory Fields"; if ($fname==''){ $alertstring=$alertstring."Fi

[PHP] md5()

2002-12-23 Thread Edward Peloke
I don't want to store my users passwords in the db as clear text so I know I can use md5(). But, what do I do when a user has forgotten his/her password and I need to send it to them? Can I reverse md5()? Thanks, Eddie -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: h

RE: [PHP] md5()

2002-12-23 Thread Edward Peloke
Thanks Johannes and Chris! That is what I will do. Eddie -Original Message- From: Johannes Schlueter [mailto:[EMAIL PROTECTED]] Sent: Monday, December 23, 2002 8:36 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP] md5() On Monday 23 December 2002 14:38, Edward Peloke

RE: [PHP] Suggestions on how I should handle this

2002-12-23 Thread Edward Peloke
Not usre how your db is designed but I would probably just add a table that links to the sitter and job tables. As people are called a row is put into this table with the sitter and job ids and an 'accepted' column is set to 0, or 1 or Y or N. Then you can query the job table and join the sitter

RE: [PHP] Images not stored in Databases

2002-12-24 Thread Edward Peloke
How will the picture make it into the db? Will they be uploaded by users? I had to create an upload script for a sight that puts the picture in the users directory on the webserver and then stored the path to the picture in the db so when the web page is displayed, the tag is something like this "

[PHP] executable

2002-12-27 Thread Edward Peloke
Hello all, Can php call an executable on the users machine? I have some divx movies and I want the user to be able to click on a link and the php page will open the divx player and start to stream the movie. is this possible? Thanks, Eddie -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] Cheap Hosting

2002-12-27 Thread Edward Peloke
I use www.ht-tech.net Very reliable and I currently pay $12.95 a month. Eddie -Original Message- From: 1LT John W. Holmes [mailto:[EMAIL PROTECTED]] Sent: Friday, December 27, 2002 10:43 AM To: Stephen; Rick Emery Cc: PHP List Subject: Re: [PHP] Cheap Hosting That's only 8 days of work

[PHP] creating a .doc file in php

2002-12-30 Thread Edward Peloke
I am creating a 'vacation' scheduling webpage for my company. Currently, when we want a day off, we fill out a document in word and send it to our supervisor. The page I am working on will have a calendar that displays who is off when. I would like for the employees to click on a date, enter the

RE: [PHP] creating a .doc file in php

2002-12-30 Thread Edward Peloke
Thanks Marco, So I would just create the .rtf file with php, then store it on the server and attach it to the e-mail? Thanks, Eddie -Original Message- From: Marco Tabini [mailto:[EMAIL PROTECTED]] Sent: Monday, December 30, 2002 9:17 AM To: Edward Peloke Cc: [EMAIL PROTECTED] Subject

RE: [PHP] creating a .doc file in php

2002-12-30 Thread Edward Peloke
thanks, I will give it a shot! Thanks, Eddie -Original Message- From: Marco Tabini [mailto:[EMAIL PROTECTED]] Sent: Monday, December 30, 2002 10:26 AM To: Edward Peloke Cc: [EMAIL PROTECTED] Subject: RE: [PHP] creating a .doc file in php Yep. There should be a few SMTP/Email composing

[PHP] rtf....I knew it couldn't be this easy

2002-12-30 Thread Edward Peloke
Ok, I took a word document, saved it as an rtf then opened the document in a text editor so that I could see all the rtf code. I then added this code to my script $fp=fopen("documents\off.rtf",w); $outputstring=""; fwrite($fp, $outputstring); For the outputstring, I simply cut and paste the rtf

RE: [PHP] Re: rtf....I knew it couldn't be this easy

2002-12-30 Thread Edward Peloke
- From: gamin [mailto:[EMAIL PROTECTED]] Sent: Monday, December 30, 2002 4:11 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: rtfI knew it couldn't be this easy "Edward Peloke" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Ok,

[PHP] mail()

2002-12-31 Thread Edward Peloke
Hello all, For some reason, I have one computer running php that I can't get the mail function to work on. I get this error: Warning: Failed to Receive in c:\program files\apache group\apache\htdocs\mailtest.php on line 2 The machine is running windows and apache as the web server. In my php.

[PHP] mail attachments

2003-01-02 Thread Edward Peloke
I hope you all had a great New Year. Is attaching a document to an e-mail simply a matter of adding a new header in the mail function? Thanks, Eddie -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] mail attachments

2003-01-02 Thread Edward Peloke
: Edward Peloke Cc: [EMAIL PROTECTED] Subject: Re: [PHP] mail attachments Nope--it's a bit more complicated than that. However, there are a number of classes out there that can help you out with that. Cheers, Marco -- php|architect - The Monthly Magazine for PHP Professionals

[PHP] progress page

2003-01-06 Thread Edward Peloke
I am working on an application that will take data from the user and run then check through all the data to find matches. Instead of the user seeing a blank screen while the page is loading, I would like to pop up a page that says, processing, please wait and maybe have an icon like a progress bar

[PHP] permissions

2003-01-10 Thread Edward Peloke
I have a script which uploads images from the user. My webhost recently moved things around and now I get permission errors when the file is uploaded. I am using the path from the apache root to my destination folder as the path to the image folder. My webhost told me that the folder has all per

[PHP] data move, Please Help..

2003-01-14 Thread Edward Peloke
Ok, I know I have asked this question before and I have asked it on the db forum, on asp forums, java applet forums, searched google, etc but can't really seem to find anything. I have to come up with a way to move data from an access db to the mysql db on the webserver. If I have to, I can uplo

RE: [PHP] data move, Please Help..

2003-01-14 Thread Edward Peloke
-Original Message- From: Rick Emery [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 14, 2003 9:33 AM To: Edward Peloke; PHP general list Subject: Re: [PHP] data move, Please Help.. try GOOGLE: access mysql php conversion I did - Original Message - From: "Edward Peloke" <[EM

RE: [PHP] data move, Please Help..

2003-01-14 Thread Edward Peloke
Has anyone uploaded a file and then used php to transfer the data between the two databases?? -Original Message- From: Edward Peloke [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 14, 2003 10:27 AM To: PHP general list Subject: RE: [PHP] data move, Please Help.. thanks Rick, I did

RE: [PHP] data move, Please Help..

2003-01-14 Thread Edward Peloke
L keyword is specified, the file is read from the client host. If LOCAL is not specified, the file must be located on the server. (LOCAL is available in MySQL 3.22.6 or later.) - HTH Tom Henry Rick Emery wrote: > try GOOGLE: access mysql php conversion >

[PHP] x12 837

2003-01-16 Thread Edward Peloke
Ok, I know this is a longshot but does anyone on this list work in the healthcare industry and have created an 837 with php? I am thinking of attempting to create one in php and didn't want to reinvent the wheel. Thanks, Eddie -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

RE: [PHP] x12 837

2003-01-16 Thread Edward Peloke
ni [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 4:03 PM To: Rodney Green Cc: Edward Peloke; Php-General@Lists. Php. Net Subject: Re: [PHP] x12 837 On Thu, 2003-01-16 at 16:10, Rodney Green wrote: > Just curious. What is an 837? I'm curious, too... what is it? Not a good

RE: [PHP] x12 837

2003-01-16 Thread Edward Peloke
. Eddie -Original Message- From: Edward Peloke [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 4:51 PM To: Php-General@Lists. Php. Net Subject: RE: [PHP] x12 837 I apologize, an 837 is a 'Professional Health Care Claim'. Basically what the healthcare organizations use to

RE: [PHP] x12 837

2003-01-16 Thread Edward Peloke
Cal, You used php for this? I am pretty sure that an 850 is on our list of things to do somewhere. Eddie -Original Message- From: Cal Evans [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 4:22 PM To: Edward Peloke; Php-General@Lists. Php. Net Subject: RE: [PHP] x12 837

RE: [PHP] x12 837

2003-01-17 Thread Edward Peloke
Thanks Cal, I may be asking some questions! I just have a blank script now so I have a lot to do! Eddie -Original Message- From: Cal Evans [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 4:37 PM To: Edward Peloke; Php-General@Lists. Php. Net Subject: RE: [PHP] x12 837 yea

RE: [PHP] Re: Making alternate rows of different colour

2003-01-17 Thread Edward Peloke
I did this by defining two colors, and as I looped through the query, I would just change it each time... ex... $trcolor="#F0F8FF"; while ($myrow = mysql_fetch_array($result)){ $colorset=0; if ($trcolor=='#F0F8FF'){ $trcolor='#B0C4DE'; $co

[PHP] odbc..

2003-01-21 Thread Edward Peloke
Hello all, I know I can connect to another db through an odbc connection in php. Can I use php to create the connection initially? I will be uploading an access db from the users and then moving the data over into my mysql db. Since this will all be done automatically, I will need php to upload

RE: [PHP] Newbie Questions

2003-01-21 Thread Edward Peloke
This is geared to php and mysql but I started by downloading the first four chapters of this book, which are free. http://sitepoint.com/books/?bookid=kevinyank Eddie -Original Message- From: Neil Freeman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 10:52 AM To: Bryan Cassid

RE: [PHP] build menu with mysql data

2003-01-21 Thread Edward Peloke
Marc, I did something sort of along these lines with an 'auction' site I worked on. I displayed rows from a db. If the row had bid information in the db (or your case submenu info) then a + sign icon was displayed next to it. IF the plus sign was clicked, the page would reload and the bid or su

RE: [PHP] Dynamic List Using Php

2003-01-21 Thread Edward Peloke
So the select will be generated from values in the db? here is an example of something I did.. print" City:"; print" "; $result2=mysql_query("SELECT distinct(city) from listings where approved=1 and state='$state' and country='$country'");

[PHP] create new odbc connection..please help

2003-01-21 Thread Edward Peloke
Can someone point me in the right direction on how to create a new odbc connection? I need to use php to actually set up the connection. I know how to use php to connect once the connection is created and know how to create on using control panel>etc, just don't know how to create one using php.

RE: [PHP] File upload problem

2003-01-21 Thread Edward Peloke
John, I have Win 98 with Apache 2 and it worked fine for me, once I commented out the file type check, didn't seem to like any file I tried, even gifs. I also had to create a folder named 'files' under my htdocs folder in apache. Eddie -Original Message- From: John M [mailto:[EMAIL PRO

[PHP] RE: [PHP-DB] Re: [PHP] build menu with mysql data

2003-01-21 Thread Edward Peloke
s why I'm posting to the newsgroup. The only working thing I have today is the listing of the "main db" It looks a bit whired since I copy past it from the file. Could you post some of your code? -------- --

RE: [PHP] Is this just not possible?? ..create new odbc connection..please help

2003-01-22 Thread Edward Peloke
Haven't had a single response so I am not sure if this isn't possible or just really easy and something I should already know. Thanks, Eddie -Original Message----- From: Edward Peloke [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 3:32 PM To: [EMAIL PROTECTED] Sub

RE: [PHP] Is this just not possible?? ..create new odbc connection..please help

2003-01-22 Thread Edward Peloke
Thanks Jason, I know how to connect to an odbc datasource but will this function also allow me to create one? Thanks, Eddie -Original Message- From: Jason k Larson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 9:38 AM To: Edward Peloke Cc: [EMAIL PROTECTED] Subject: Re

RE: [PHP] Is this just not possible?? ..create new odbc connection..please help

2003-01-22 Thread Edward Peloke
ssage- From: Jason k Larson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 9:47 AM To: Edward Peloke Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Is this just not possible?? ..create new odbc connection..please help Are you wanting to have PHP dynamically create ODBC datasources inst

RE: [PHP] Need help.

2003-01-22 Thread Edward Peloke
can you post some code? -Original Message- From: thkiat [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 10:23 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [PHP] Need help. Can someone tell me what should I do to solve this problem? Warning: mysql_fetch_row(): suppli

RE: [PHP] Is this just not possible?? ..create new odbc connection..please help

2003-01-22 Thread Edward Peloke
From: Edward Peloke [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 10:20 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] Is this just not possible?? ..create new odbc connection..please help yep, I am trying to come up with a way to get data out of an access db on the users machine and lo

[PHP] RE: last time, I promise...is this possible???

2003-01-22 Thread Edward Peloke
Not getting any responses so should I will plow through it, just wanted to try one more time. -Original Message- From: Edward Peloke [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 10:20 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] Is this just not possible?? ..create new

RE: [PHP] checkboxes & php

2003-01-24 Thread Edward Peloke
why would you give them all the same name? I can see this for radio buttons but not checkboxes. -Original Message- From: Greg [mailto:[EMAIL PROTECTED]] Sent: Friday, January 24, 2003 3:27 PM To: [EMAIL PROTECTED] Subject: [PHP] checkboxes & php If I have 3 checkboxes labeled "user", bu

[PHP] chat rooms

2003-01-29 Thread Edward Peloke
Does anyone have any suggestions for a good small FREe chat room to add to a family site? A friend here at work is hosting a site from home and is looking to add a chat room. Some of his site is php so if it is php based, that would be great. We even talked today about creating our own. Thanks

[PHP] iframes and php

2003-02-04 Thread Edward Peloke
there is a php page that uses an iframe...when I view the page at home, I see all of the contents of the iframe...when I view it at work some of the contents are wrapped...both of my screen resolutions are the same. Why would this be? Thanks, Eddie -- PHP General Mailing List (http://www.php.n

RE: [PHP] testing a query for success--code doesnt work

2003-02-04 Thread Edward Peloke
I believe as long as the update was successful (no errors) it will say 'message if successful'...I think you are wanting to know if rows were updated or not...not whether or not the query ran ok. Eddie -Original Message- From: Sunfire [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04,

RE: [PHP] testing a query for success--code doesnt work

2003-02-04 Thread Edward Peloke
I think you want to use mysql_affected_rows -Original Message- From: Sunfire [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 3:51 PM To: [EMAIL PROTECTED] Subject: [PHP] testing a query for success--code doesnt work hi.. posted a message about what the code was to test an upd

RE: [PHP] testing a query for success--code doesnt work

2003-02-04 Thread Edward Peloke
happened }else{ message saying the record was actually updated } if i can get some code example for that...it would help tnx - Original Message - From: "Edward Peloke" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 04, 2003 3:46 PM Subject: RE: [PH

RE: [PHP] testing a query for success--code doesnt work

2003-02-04 Thread Edward Peloke
thanks!...my fault... I had never used it...been using mysql_num_rows so that is where I took the example. Thanks! Eddie -Original Message- From: Kevin Stone [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 4:53 PM To: Edward Peloke; [EMAIL PROTECTED] Subject: Re: [PHP

[PHP] writing to the db on close

2003-02-05 Thread Edward Peloke
Hello, I need a way to write a record to the db when the user closes their browser. How can I do this? I looked last night at the onunload javascript event but am not sure how that can trigger the php code to enter a row in the db. I am using sessions so is there a way to write to the db when th

[PHP] best oop book

2003-02-05 Thread Edward Peloke
Ok, I have seen a suggestion or two for oop books but I would like to buy one so what is the best php object oriented book on the market...in everyone's opinion. The Professional PHP4 XML book looks good for xml, so I hope to get that one, I have a php/mysql book, just want a good oop book now.

[PHP] session id

2003-02-06 Thread Edward Peloke
Ok, I am sure this has been discussed but I have not been keeping up with the listserv. I am using sessions so to test, I blocked all cookies and of course the sessionid is then in the url. How can I hide it from the url?...or is this even possible? Thanks, Eddie -- PHP General Mailing List (

[PHP] processing files

2003-02-06 Thread Edward Peloke
Is there a setting in the config file where I can tell php what extensions to process? Thanks, Eddie -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] numerics

2003-02-10 Thread Edward Peloke
IS there a way to only allow the user to type in numerics to a text field? I do not want to allow them to even type in anything unless it is a number. Basically, I don't want to allow them to enter hi and then I do checks and give them a warning that it isn't a number, I want to force it from the s

[PHP] passing array as a form variable

2003-02-11 Thread Edward Peloke
Can I take the select array Ex. $myrow=mysql_fetch_array($result); and pass this as a form variable to another page? Thanks, Eddie -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] form within form

2003-02-13 Thread Edward Peloke
I am creating a form to allow the user to change his/her password. After the user enters their username and old password, I need to verify that info before they can change their user name and password. So I tried using a form within a form but am having some problems with passing the parameters b

RE: [PHP] form within form

2003-02-13 Thread Edward Peloke
ALso, global variables are off... -Original Message- From: Edward Peloke [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 13, 2003 1:22 PM To: Php-General@Lists. Php. Net Subject: [PHP] form within form I am creating a form to allow the user to change his/her password. After the

RE: [PHP] form within form

2003-02-13 Thread Edward Peloke
I apologize I mean when they click the 'verify' button, I verify their username and password before I allow them to update it. Eddie -Original Message- From: Rick Emery [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 13, 2003 1:27 PM To: Edward Peloke; Php-General@Lists

[PHP] crypt()

2003-02-13 Thread Edward Peloke
Is there anyway to make crypt() behave like md5() and give the same results for the same string? All of the passwords for the db I am using had crpyt() applied to them before they were entered in the db. How do I then verify that passwords match? I just did this: $test=crypt('test'); print $test

[PHP] loading same page

2003-02-16 Thread Edward Peloke
hello, I have a very simply page, the users can signup for a certain time to volunteer, when they hit submit, the page reloads but I want their time to be inserted in the db and then displayed. After I hit submit, it brings me back to the page but their info isn't there until I refresh. Somet

[PHP] why won't this work?

2003-02-18 Thread Edward Peloke
Why won't this work? I have a form that people enter in a time to volunteer, when the submit it, I call the same page and want the time to then show on the page but I have to refresh it to see the time and sometimes it just doesn't show up. It is like the page loads before all the sql statements a

[PHP] ankord php text editor

2003-02-18 Thread Edward Peloke
anyone use the php expert editor from Ankord? If so, what do you think? Thanks, Eddie -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] ankord php text editor

2003-02-18 Thread Edward Peloke
FREE editor available out there. :) -awlad - Original Message - From: "Edward Peloke" <[EMAIL PROTECTED]> To: "Php-General@Lists. Php. Net" <[EMAIL PROTECTED]> Sent: Tuesday, February 18, 2003 3:46 PM Subject: [PHP] ankord php text editor > anyone us

[PHP] dynamic list box

2003-02-24 Thread Edward Peloke
Hello, I have an sql statement that pulls data into a dynamic list box, the problem is, I have this list box twice on my form, since the query returns a lot of rows, I do not want to have the query executed twice but I populate my list box using the while loop so when it is time for the second lis

RE: [PHP] dynamic list box

2003-02-24 Thread Edward Peloke
Thanks all, I will give all these ideas a shot! Eddie -Original Message- From: 1LT John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 9:07 AM To: Edward Peloke; [EMAIL PROTECTED] Php. Net Subject: Re: [PHP] dynamic list box > I have an sql statement that pu

RE: [PHP] Zend

2003-07-01 Thread Edward Peloke
I just went here...accepted and it began downloading.. http://www.zend.com/store/getfreefile.php?pid=13&zbid=550 -Original Message- From: Gladk [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 1:45 PM To: [EMAIL PROTECTED] Subject: [PHP] Zend Hi ALL! Sorry I repeat the question,

RE: [PHP] outputting a carriage return

2003-07-17 Thread Edward Peloke
try nl2br() http://us2.php.net/manual/en/function.nl2br.php -Original Message- From: bob pilly [mailto:[EMAIL PROTECTED] Sent: Thursday, July 17, 2003 9:12 AM To: [EMAIL PROTECTED] Subject: [PHP] outputting a carriage return Hi all Can someone tell me why if i echo a line like this:

[PHP] osCommerce and modifications

2003-07-18 Thread Edward Peloke
Hello, I am helping a friend with an eCommerce site. We have decided to use osCommerce. The package looks really nice and is completely PHP. My question is, does anyone have much experience with modifying it? We have to make some changes but all of the code looks fairly intertwined. Just look

RE: [PHP] osCommerce and modifications

2003-07-18 Thread Edward Peloke
sacred gift and the rational mind is a faithful servant. We have created a society that honors the servant and has forgotten the gift." - Albert Einstein > From: [EMAIL PROTECTED] (Edward Peloke) > Date: Fri, 18 Jul 2003 09:20:44 -0400 > To: "[EMAIL PROTECTED] Php. Net&qu

RE: [PHP] eShox

2003-07-18 Thread Edward Peloke
I downloaded osCommerce yesterday from sourceforge...very easy to set up and looked really nice. -Original Message- From: Ryan A [mailto:[EMAIL PROTECTED] Sent: Friday, July 18, 2003 9:46 AM To: [EMAIL PROTECTED] Subject: [PHP] eShox Hi, I have just been browsing the list and I see a rec

RE: [PHP] eShox

2003-07-18 Thread Edward Peloke
thanks Richard, I will let the guy know who I am doing this for...I really appreciated it. -Original Message- From: Richard Baskett [mailto:[EMAIL PROTECTED] Sent: Friday, July 18, 2003 9:45 AM To: PHP General Subject: Re: [PHP] eShox Mostly eShox you are paying for support. It's a grea

[PHP] paypal and ecommerce

2003-07-18 Thread Edward Peloke
Looking for opinions as to the best way to handle this. I am using a php ecommerce product(osCommerce) to create an 'online yardsale'. This will not be an auction site but items for sale at a straight price. Currently the site is set up so the user can place several things in their basket, check

RE: [PHP] paypal and ecommerce

2003-07-18 Thread Edward Peloke
web site. Like eBay does.. However, you'll be able to buy 2+ items at one time. Do you want suggestions on how to set it up for one checkout process, and several payment destinations? -Dan Joseph > -Original Message- > From: Ralph Guzman [mailto:[EMAIL PROTECTED] &g

RE: [PHP] php4 vs php5

2003-07-24 Thread Edward Peloke
some more good php5 info... http://www.phparch.com/news/343 -Original Message- From: Robert Janeczek [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 7:16 AM To: [EMAIL PROTECTED] Subject: [PHP] php4 vs php5 hi, i`m working on presentation of php5 features and i would like to add

[PHP] what's the best way to handle this?

2003-03-18 Thread Edward Peloke
Ok, I hope this makes sense, When a user 'registers' with our site, I want to generate their personal webpage for them. Currently, I have a webpage where the contents are generated from their personal info in the db and I have a drop down to view client pages but it is just the same page but I pa

RE: [PHP] what's the best way to handle this?

2003-03-18 Thread Edward Peloke
thanks, not sure how to do either of these...but I will look them up. -Original Message- From: Ernest E Vogelsinger [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 18, 2003 9:14 AM To: Edward Peloke Cc: [EMAIL PROTECTED] Php. Net Subject: Re: [PHP] what's the best way to handle this?

[PHP] credit card validations..

2003-03-20 Thread Edward Peloke
The owner of the php site I am working on just told me he want to do credit card validations on the site. Currently, we aren't doing anything with credit cards. I have no idea as to where to even start with this. Should I simply go the paypal route? Thanks, Eddie -- PHP General Mailing List

RE: [PHP] credit card validations..

2003-03-20 Thread Edward Peloke
: Edward Peloke; [EMAIL PROTECTED] Php. Net Subject: Re: [PHP] credit card validations.. - Original Message - From: "Edward Peloke" <[EMAIL PROTECTED]> To: "[EMAIL PROTECTED] Php. Net" <[EMAIL PROTECTED]> Sent: Thursday, March 20, 2003 11:50 AM Subjec

  1   2   3   >