import an image (e.g.GIF, JPEG...etc) into a MySQL database

2001-06-13 Thread Abdulmoumen Alamdy
Hi all, Can any one help me on how to import an image (e.g. GIF, JPEG...etc) into a MySQL database via a web form Thanks a lot, __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.co

problem with IIS 5.0

2001-06-13 Thread Curtis, Brad
I am recieving an xml error of Entity, EntityRef, PI, Notation names, or NMToken cannot contain a colon. Line 36, Position 16 header( "text/plain" ), $q->start_html ( -title => "the time"), $q->end_html; I took this straight from oriely's cgi programming with perl. thanks in advance __

RE: problem with IIS 5.0

2001-06-13 Thread Lee Goddard
The output I get from your script is: Content-Type: text/plain; charset=ISO-8859-1 http://www.w3.org/1999/xhtml"; lang="en-US">the time This is quite correct. The document produced views correctly here. The error is also correct: that doesn't look like a valid processing instruction to me, b

Re: AW: check if a FTP server online

2001-06-13 Thread Michael W. Jones
I am sorry but I have no idea. Hopefully someone will see this and reply. Michael Jones --- Kristofer Wolff <[EMAIL PROTECTED]> wrote: > hm, this works ! cool > > But now i have a question, why does IO::SOCKET works and > SOCKET dosn't !! Ok > its not allowed to open Socket connektions on my serv

'm having problems getting my cgi scripts running. I'm usingPWS 4.0 on an NT 4.0 workstation. The

2001-06-13 Thread Brad Harriger
'm having problems getting my cgi scripts running. I'm using PWS 4.0 on an NT 4.0 workstation. The script runs fine from the command line, but doesn't do anything in a browser. I've looked through the archives, but I haven't found anything that helped me. Any other suggestions. TIA,

Re:

2001-06-13 Thread Mark Bergeron
Isn't IIS available for you to download? I think you can with workstation. Mark Bergeron -Original Message- From: "Brad Harriger"<[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Date: Wed Jun 13 13:20:45 PDT 2001 Subject: 'm having problems getting my cgi scripts running. I'm using PWS 4.0 on

regex question...

2001-06-13 Thread Schiza, Apostolia (ISS Atlanta)
Hi, in one of my perl scripts I am trying to check for a valid ip address, ie in the format of XXX.XXX.XXX.XXX where x of course is digit, and you can have ips with each feild having 1-3 digits This is the regex I am using: $ip_addr =~ m/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/ (I am basically trying

Re: regex question...

2001-06-13 Thread $Bill Luebkert
"Schiza, Apostolia (ISS Atlanta)" wrote: > > Hi, > in one of my perl scripts I am trying to check for a valid ip address, > ie in the format of XXX.XXX.XXX.XXX where x of course is digit, > and you can have ips with each feild having 1-3 digits > This is the regex I am using: > > $ip_addr =~ m/\

Re: 'm having problems getting my cgi scripts running. I'm usingPWS 4.0 on an NT 4.0 workstation. The

2001-06-13 Thread Rythmist
Hi, visit http://www.studiodeluxe.net/pws/ Rythmist - Original Message - From: "Brad Harriger" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 13, 2001 4:20 PM Subject: 'm having problems getting my cgi scripts running. I'm usingPWS 4.0 on an NT 4.0 workstation. The

Re: Re:

2001-06-13 Thread Mark Bergeron
Here is the Microsoft take on it all: http://msdn.microsoft.com/library/default.asp?URL=/library/officedev/office97/settinguppersonalwebserver.htm GL, Mark Bergeron -Original Message- From: "Rythmist"<[EMAIL PROTECTED]> To: "Brad Harriger"<[EMAIL PROTECTED]>, [EMAIL PROTECTED] Date: We

RE: regex question...

2001-06-13 Thread Richard A. Evans
If you really want a 'correct' IP, you could use this: $ip_addr =~ /^(([01]?\d\d?|2[0-4]\d|25[0-5])\.){3}([01]?\d\d?|2[0-4]\d|25[0-5])$/ This RegEx (based on page 124 of "Mastering Regular Expressions", O'Reilly) forces the numbers to be in the range 0 - 255. There is one, and only one problem

Re: regex question...

2001-06-13 Thread Tim Hammerquist
"$Bill Luebkert" wrote: > > "Schiza, Apostolia (ISS Atlanta)" wrote: > > > > Hi, > > in one of my perl scripts I am trying to check for a valid ip address, > > ie in the format of XXX.XXX.XXX.XXX where x of course is digit, > > and you can have ips with each feild having 1-3 digits > > This is th

Re: regex question...

2001-06-13 Thread $Bill Luebkert
Tim Hammerquist wrote: > > "$Bill Luebkert" wrote: > > > > "Schiza, Apostolia (ISS Atlanta)" wrote: > > > > > > Hi, > > > in one of my perl scripts I am trying to check for a valid ip address, > > > ie in the format of XXX.XXX.XXX.XXX where x of course is digit, > > > and you can have ips with ea

regex question...

2001-06-13 Thread Schiza, Apostolia (ISS Atlanta)
> Hi, > in one of my perl scripts I am trying to check for a valid ip address, > ie in the format of XXX.XXX.XXX.XXX where x of course is digit, > and you can have ips with each feild having 1-3 digits > This is the regex I am using: > > $ip_addr =~ m/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/ > (I am