This is an article discussion thread for discussing the SitePoint article, “Access your MySQL Database with Perl”
perl… mysql…
why is this in the php forum?
In add.pl, I find a small bug, maybe just in my server. Before is:
print <<PAGE;
<h1>User Added</h1>
The user $username was just added. Want to
<a href=add.pl>add another</a>? PAGE
I modify it as:
print <<PAGE;
<h1>User Added</h1>
<form>
The user $username was just added. Want to
<a href=add.pl>add another</a>?
</from>
PAGE