Tagged Questions
3
votes
6answers
311 views
CGI language choice
Ok, I've asked a few related questions here and only ended up with more questions and I realized now it's because I don't have enough background info. So I'll make it more generic:
I need to make a ...
2
votes
3answers
160 views
Why is Encode::decode('UTF-8', $var) still needed when everything is already in UTF-8?
In a Webapp I maintain I try to keep everything in UTF-8:
the Database (CHARSET=utf8)
the source files (use utf8; written in utf8)
the templates (for Template Toolkit, using ENCODING => utf8)
user ...
2
votes
6answers
655 views
Can I display the output of MySQL using CGI?
HI,
I have written a program in Perl using the DBI module. Can I display the output of MySQL using CGI? If so please help me.
program:
#!/usr/bin/perl -w
use DBI;
print ...
1
vote
2answers
42 views
Perl: How to treat a certain MySQL table as utf8
Here is a system that handles everything in latin1, but I want this one particular table to be read as utf8, then properly encoded into JSON.
How do I switch the connection to utf8, then read it, ...
1
vote
1answer
28 views
How to synchronize table updates
I've single database table containing some financial information. Multiple users may be viewing and updating at the same time from a web form on their computers.
What I want is that anyone who does ...
1
vote
1answer
89 views
should I reuse the cursor in the python MySQLdb module
I'm writing a python CGI script that will query a MySQL database. I'm using the MySQLdb module. Since the database will be queryed repeatedly, I wrote this function....
def ...
1
vote
2answers
99 views
Convert CGI REMOTE_ADDR to network byte order for use with MySql INET_NTOA
I'm trying to log requests for a script and I want to store the client's IP Address in an int(4) column, using INET_NTOA() to return it in a readable function.
However, in my Perl CGI script, ...
1
vote
1answer
231 views
perl CGI radio_group: populate values from DB query
Im trying to dynmically generate a table that has a radio button per row whose value is set to the ID field of a SQL table. Im not sure how I can reference this value using CGI radio_group. In my ...
1
vote
1answer
75 views
How can I add a search feature to a website that returns images?
I need to add a search feature to a website.
Not being adept at PERL or PHP, I was thinking of adding a remotely hosted search CGI (like freefind or fusionbot). Alternately, I might end up trying to ...
1
vote
2answers
105 views
How can I add file locations to a database after they are uploaded using a Perl CGI script?
I have a CGI program I have written using Perl. One of its functions is to upload pics to the server.
All of it is working well, including adding all kinds of info to a MySQL db. My question is: How ...
0
votes
1answer
37 views
How to limit insert data into mysql from a file using perl
I am relatively new to Perl.I have been trying to insert data to database from a text file using a CGI script.I have written code for it and it's working properly.but when i try to impose a limit on ...
0
votes
0answers
29 views
connect mysql database within CGI
Another problem related to CGI and mysql database connection. The purpose is to have a form through web browser and input entries to mysql database, and display it on the web browser to see the ...
0
votes
2answers
52 views
Interfacing MySQL and C
I have OSX Lion, which comes with Postgres, but I'd rather us MySQL. But either way, I'm pretty lost. How would I go about interfacing C with MySQL, so I can just #include "mysql.h" (or maybe some ...
0
votes
0answers
51 views
I can't create new bug information in bugzilla [closed]
I'm a new user of bugzilla. I config my bugzilla in REHL 5 with MySQL database.
Now, I can visit http://localhost/ to visit my bugzilla homepage. Also I can create new user, visit search page. But ...
0
votes
1answer
60 views
Alternative to Pythons SQLite3 module - maybe MySQL
We have a website that uses SQL (currently SQLite3) to store entrants into a competition & the server side language is python & uses the module sqlite3. It turns out that the webhost runs ...
0
votes
1answer
187 views
Linking error in C and Mysql
Hi I'm developing CGI which is written in C and trying to use Mysql.
When I try to use it, I got those undefined reference errors for symbols that start with mysql_, such as those shown here:
...
0
votes
1answer
174 views
Error when linking CGI (C programming ) with Mysql
Hi
I'm using CGI which is written with C and MySql.
Here is my sample page.
// save user
void saveUser(char *name, char *pwd,char *role)
{
char query[500];
memset(query,0,500);
...
0
votes
2answers
344 views
C++ CGI and MySQL problem (mysql++)
I'm trying to use c++ in cgi programs and everything is ok if i don't use mysql. Without mysql my site is generated in about 1-2 ms, but if I add only one variable or function from mysql++ library, ...
-1
votes
1answer
65 views
mysql takes 50+ times longer to return 20% more records, why?
I am using a program that I downloaded and don't have all the details. This is a web app (Python CGI) that takes user input and queries the mysql database. What I do know is that when I limit the ...
-1
votes
1answer
3k views
Why does my Perl CGI complain “Can't locate Mysql.pm”?
I have two folders php and perl. They contain index.php and index.pl, respectively.
My Perl code looks like:
#!/usr/bin/perl
use Mysql;
print "Content-type: text/html\n\n";
print ...