is the database closed out before the next call?
I'm using DBD::mysql
$connection = DBI->connect('DBI:mysql:TABLE', 'root', 'password');
$query2 = "select loginhistory, logincount from useracounts where USERNAME = '$Values[1]'";
$statement = $connection->prepare($query2)...
I've been out of the game for awhile now, and just started playing with PERL again...
I installed strawberry PERL, but later installed the xampp web sever.
I then uninstalled strawberry PERL, after making a copy for the xampp web sever.
so now all my PERL scripts run from the strawberry PERL...
well thanks for your help, but i'm loking at my lap-top seeing how in the world i got it installed on there. thanks agin for your time :)
~Nate_Bro
http://www.setapartgraphics.com/
http://www.setapartgraphics.com/Free_Scripts/ Code Snippets just because
But you still have to have gd-2.0.35 installed right?
I'm sorry, I'm just really confused, i installed GD last time in 15 min, it was about 2am and i have no idea how i did it.....
~Nate_Bro
http://www.setapartgraphics.com/
http://www.setapartgraphics.com/Free_Scripts/ Code Snippets just because
I rememberd i used cpan.bat it downloaded ok, but i can't get it to install...
i get this:
cpan> install GD
Running install for module 'GD'
Running make for L/LD/LDS/GD-2.35.tar.gz
Has already been unwrapped into directory C:\Perl\cpan\build\GD-2.35-la9DsP
Could not make: Unknown error...
I'm haveing a lot of truble remembering how to install the GD lib on my computer, i installed it on my lap top a year ago, but have no idea how i did it.
any help would be great! thanks!
its the "if" statement. it needs to be 'if' not 'If' all lower case
~Nate_Bro
http://www.setapartgraphics.com/
http://www.setapartgraphics.com/Free_Scripts/ Code Snippets just because
well first off, you don't need the ";" at the end of a if statement.
not good!
if ();{
}
good!
if (){
}
also you used If (), use lowercase if ()
not good!
If (){
}
good!
if (){
}
also you can't start an id name with a number...
this is the code in working order...
change this...
function newLocation() {
document.location.href = "http://" + adURL[thisAd];
return false;
}
to...
function newLocation() {
window.open("http://" + adURL[thisAd], "MyWindow", "");
return false;
}
see this site for more info...
ok that helps sooo much! I have no idea what i was thinking, i didn't think to test and see if i could use Hexadecimal colors! and i was wondering about how to insert the icon for the main window. thank you soo much! you saved me hours of wondering google!
I have a canvas with squares, but i need to use RGB colors, but i'm not sure exactly how, i looked at google, but didn't find anything with the standerd distribution of PERL.
thanks for your time!
~Nate_Bro
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.