How check DBI version on the server?

2005-08-29 Thread Maxipoint Rep Office
How check DBI version on the server? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

FW: Best WML editor for Perl?

2005-06-01 Thread Maxipoint Rep Office
I am send only ONCE message! Pls check mailing list, I can see that my message is received multiple times at the mailing list -GP -Original Message- From: Maxipoint Rep Office [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 31, 2005 6:15 PM To: beginners@perl.org Subject: Best WML editor

Best WML editor for Perl?

2005-05-31 Thread Maxipoint Rep Office
WapEmperor Wap Pro 2.0 was be good, but he is not at the web now.. WapEmperor Wap Pro 2.0 is the single most powerful WML editor for Windows 95/98, Windows NT, and Windows 2000 systems. Using this program simplifies the WML development effort and saves time of up to an amazing 80%. This advanced

Best WML editor for Perl?

2005-05-31 Thread Maxipoint Rep Office
I wish create interactive WAP WML pages using Perl.. Best WML editor is best fot these job? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

drag and drop for web?

2005-04-16 Thread Maxipoint Rep Office
have Perl some good modul for Drag and Drop files on the web.. for example that web site visitor inside control panel can drag and drop for upload on the server all files like: .zip, images, and other files -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL P

Redirect on the pushing button

2005-03-31 Thread Maxipoint Rep Office
I am create edit data form, and it ask visitor: "do you wish edit data?" All is ok with Yes button, but I don't kniw what with No button :-) I wish that clicking NO button recirect me on some URL.. Any help -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL P

Triple Combo Box with Perl?

2005-01-16 Thread Maxipoint Rep Office
Have someone idea or url how create Triple Combo Box with Perl? something like here: http://javascriptkit.com/script/script2/triplecombo.shtml but not redirection at the end, i need only data submision after user select combination.. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

upload files using MySQL database

2005-01-13 Thread Maxipoint Rep Office
how upload files with Perl using MySQL database? i wish that file be uploaded to the one folder on the server and the path og image must be added into MySQL database column.. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: how summarise results from 2 hashes?

2004-10-28 Thread Maxipoint Rep Office
-Original Message- From: Charles K. Clarkson [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 8:37 PM To: [EMAIL PROTECTED] Subject: RE: how summarise results from 2 hashes? Maxipoint Rep Office <[EMAIL PROTECTED]> top-posted: : Additional: $hasfromform1 have as resul

RE: how summarise results from 2 hashes?

2004-10-28 Thread Maxipoint Rep Office
in factforeach(keys %{$hasfromform1}){ : if($forma->{$_} eq $_){ : $hasfromform1 += $hasfromform2->{$_}; work when $hasfromform2 has 1 key only. But if I select more keys calculation is not ok! my $total = $hasfromform1 + $hasfromform2; -- To unsubscribe, e-mail: [EMA

RE: how summarise results from 2 hashes?

2004-10-28 Thread Maxipoint Rep Office
Additional: $hasfromform1 have as result only 1 key $hasfromform2 can have multiple keys (ever key by $hasfromform2 must be + with other $hasfromform2 key) and at the end go: one key from $hasfromform1 + every key of $hasfromform2 : how summarise results from 2 hashes? What do you mean b

RE: how summarise results from 2 hashes?

2004-10-28 Thread Maxipoint Rep Office
: how summarise results from 2 hashes? What do you mean by "summarise"? RE: I mean: every key of $hasfromform1 + every key of $hasfromform2 : it will not summarise key(s) from hasfromform2! I only have : hasfromform1 : : foreach(keys %{$hasfromform1}){ : if($forma->{$_} eq $_){ :

how summarise results from 2 hashes?

2004-10-28 Thread Maxipoint Rep Office
how summarise results from 2 hashes? it will not summarise key(s) from hasfromform2! I only have hasfromform1 foreach(keys %{$hasfromform1}){ if($forma->{$_} eq $_){ $hasfromform1 += $hasfromform2->{$_}; } -- To unsubscribe, e-mail: [EMAIL PROTECTED] For add

RE: date stamps, was Re: beginners@perl.org

2004-10-23 Thread Maxipoint Rep Office
<>>> Please use a useful subject line. RE: sorry my error.. On Sat, 23 Oct 2004, Maxipoint Rep Office wrote: > how create 'date stamp' on much simpler way.. Simpler than what? $ perl -le '$now = localtime; print $now' Sat Oct 23 15:14:42 2004

beginners@perl.org

2004-10-23 Thread Maxipoint Rep Office
how create 'date stamp' on much simpler way.. I need 'date stamp' readed and I'll after that with html::temp print out on the html.. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

foreach..

2004-10-23 Thread Maxipoint Rep Office
this is actual part of my code.. all work but it seems that something is wrong in foreach part.. in reality script calculate $dodatne_opcije only! $vrsta_paketa is not added in calculation.. my $vrsta_paketa = { '20MB' => 205, '50MB' => 270, '100MB' => 350, '200MB'

file upload with Perl

2004-09-22 Thread Maxipoint Rep Office
I have few questions regarding file uplad: 1) I am try do next tutorial: http://www.redantigua.com/upload.html but what is "use lib qw(/home/redanti/perl);" here: http://www.redantigua.com/UploadApp.txt 2) What is my path instead: '/home/redanti/perl' 3) what is modul lib? Is it above li

insert data with Perl into multiple MySQL tables

2004-09-16 Thread Maxipoint Rep Office
How insert data with Perl into multiple MySQL tables? I can not find any clear advice.. this is for TABLE1: # Connect to the database. my $dbh = DBI->connect("DBI:mysql:database=;host=localhost", "username", "pass", {'RaiseError' => 1}); # now

RE: create connection from html form into insert MySQL data script

2004-09-08 Thread Maxipoint Rep Office
-Original Message- From: Eduardo Vázquez Rodríguez [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 08, 2004 2:02 AM To: Maxipoint Rep Office Cc: Charles K. Clarkson; [EMAIL PROTECTED] Subject: Re: create connection from html form into insert MySQL data script I think he is from

RE: create connection from html form into insert MySQL data script

2004-09-07 Thread Maxipoint Rep Office
-Original Message- From: Charles K. Clarkson [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 08, 2004 1:06 AM To: 'Maxipoint Rep Office'; [EMAIL PROTECTED] Subject: RE: create connection from html form into insert MySQL data script Maxipoint Rep Office <[EMAIL PROT

create connection from html form into insert MySQL data script

2004-09-07 Thread Maxipoint Rep Office
I am successful insert data in MySQL with code below: #!/usr/bin/perl -w use strict; use DBI(); use CGI; use HTML::Template; # Connect to the database. my $dbh = DBI->connect("DBI:mysql:database=MYDABASE;host=localhost", "MYDBUSERNAME", "MYPASS",

RE: how add something in MySQL what is not activated immediately

2004-08-28 Thread Maxipoint Rep Office
] Sent: Saturday, August 28, 2004 6:49 PM To: Maxipoint Rep Office Cc: [EMAIL PROTECTED] Subject: Re: how add something in MySQL what is not activated immediately Maxipoint Rep Office wrote: > how add something in MySQL what is not activated immediately? Not really a perl question but oh w

how add something in MySQL what is not activated immediately

2004-08-28 Thread Maxipoint Rep Office
how add something in MySQL what is not activated immediately? I wish submit form and add data in MySQL database, but it must not be visible at the web site for show data immediatelly. I wish that it will be visible after I manually activate data.. what is best and simple way to do it? -- To un

RE: is possible start some actions with Perl without Cron?

2004-08-20 Thread Maxipoint Rep Office
Have you some useful URL about that? -Original Message- From: Wagner, David --- Senior Programmer Analyst --- WGO [mailto:[EMAIL PROTECTED] Sent: Saturday, August 21, 2004 1:07 AM To: Maxipoint Rep Office; [EMAIL PROTECTED] Subject: RE: is possible start some actions with Perl without

is possible start some actions with Perl without Cron?

2004-08-20 Thread Maxipoint Rep Office
is possible start some actions with Perl without Cron? for example send email to users from database after 3 days or delete something from database automaticaly after 3 day with Perl but without Cron? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

reverse IP lookup for check all doimains on the server

2004-06-10 Thread Maxipoint Rep Office
Have someone any idea what I must to do? if I add some IP of server that I can see all domains on the same IP on the server. http://whois.webhosting.info/216.127.92.54 Mario --- Free professional Perl web hosting without

calculation script

2004-06-02 Thread Maxipoint Rep Office
Hello, I wish create calculation script for one form with 12 possible items (one option only of 12 must be filled/selected from client) + 5 possible items (one option only of 5 must be filled/selected from client) + possible max. 3 optional values. Every item has price, user add quantity o

I am looking for PERL coder from Romania, Bulgaria, Russia or India

2004-06-01 Thread Maxipoint Rep Office
I am looking for PERL coder from Romania, Bulgaria, Russia or India for long terms relationship. I have not large budget but I wish work with same coder on few bids. Coder must have STRONG PERL and mod_perl experience. I have some computer qnowledge and I wish learn during bids. Same coder who win