RE: [PHP] CSV download

2004-02-18 Thread Roberts, Mark (Tulsa)
MAIL PROTECTED] -Original Message- From: Robby Russell [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 18, 2004 12:42 PM To: Roberts, Mark (Tulsa); [EMAIL PROTECTED] Subject: Re: [PHP] CSV download Roberts, Mark (Tulsa) typed this on 02/18/2004 10:33 AM: > I have an application

[PHP] CSV download

2004-02-18 Thread Roberts, Mark (Tulsa)
I have an application that I need to add a function to that will download a complete MySql Table in comma delineated format from a web site to a local hard drive. What is the best way to do this? Is there a function in PHP that will do this? in MySql? or do I just need to do something with fo

RE: [PHP] AOL Email client

2003-08-14 Thread Roberts, Mark (Tulsa)
Ok, it seems to be AOL v8. I am going to set down tonight and try all these options that I have seen here and see if they fix the problem. Thanks for all your help. Mark Roberts Sr. Systems Analyst -Original Message- From: Jennifer Goodie [mailto:[EMAIL PROTECTED] Sent: Thursday, A

[PHP] file downloading

2003-06-19 Thread Roberts, Mark (Tulsa)
I need to provide a way for users to download data files from a web site. I know that I could have then right click and save-as, however, I need to record this action in a database. If they just right click, I don't have any way to trigger the script to record the transaction. Does some one h

[PHP] A simple request from a simple person

2003-06-12 Thread Roberts, Mark (Tulsa)
Obviously relatively new to php I would like to know how to do a simple redirect from a php page. For example in ASP I do response.redirect("thispage.com") Want to do the same thing in php. I have tried to go through the documentation, but can't seem to get focused on the proper and si

RE: [PHP] Connecting to a remote server

2003-03-28 Thread Roberts, Mark \(Tulsa\)
nt: Friday, March 28, 2003 12:24 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Connecting to a remote server On Friday 28 March 2003 05:00, Roberts, Mark \(Tulsa\) wrote: > I am needing to move one of my apps to a remote secure server that I have. > As I have never done this before what are th

[PHP] Connecting to a remote server

2003-03-27 Thread Roberts, Mark \(Tulsa\)
I am needing to move one of my apps to a remote secure server that I have. As I have never done this before what are the general things that I must do to make this happen. I changed my connect statement from "localhost" to the name of the server " http://www.r

[PHP] Re-directing

2002-07-24 Thread Roberts, Mark
Is there a way to redirect to a different script in PHP? I call it redirecting, but can't find it in the documentation using that track. I have a script...that if a certain criteria is met, I want to load a different script. Haven't been able to figure that out yet. I have gotten about it by cond

RE: [PHP] Else/For loop

2002-06-12 Thread Roberts, Mark
al Message- From: Christoph Starkmann [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 12, 2002 8:27 AM To: Roberts, Mark; '[EMAIL PROTECTED]' Subject: RE: [PHP] Else/For loop Hi Mark! > Being relatively new to php, I discovered the following after > about 2 hours > of

[PHP] Else/For loop

2002-06-12 Thread Roberts, Mark
Being relatively new to php, I discovered the following after about 2 hours of debugging last night and was wondering why??? I had the following code: if ( $num_results = 0 ) { echo "no records found"; } else { for ($i=0; $i < $num_results; $i++) { display

[PHP] Checking url validation

2002-03-29 Thread Roberts, Mark
I am using the following to verify a url: if (!$fp = fopen("http://www.anyurl.com";, "r")) { echo "not valid"; } else { echo "this is a valid url"; } I always get a not valid message. What am I doing wrong? Is there a better way to do this? Mark Roberts Sr. Systems Analyst LanAp