Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. dupank

    Check my code please... HTML form->Perl->mySQL db

    Thank you for your response. I've made some modifications. Successful input is supposed to be sent to the mysql database using the process_form subroutine. Do you see an issue there? FILE: register.cgi #!/usr/bin/perl use warnings; use CGI; use CGI::Carp qw(fatalsToBrowser); use DBI; #...
  2. dupank

    Check my code please... HTML form->Perl->mySQL db

    This isn't a student posting.
  3. dupank

    Check my code please... HTML form->Perl->mySQL db

    Sorry, i forgot the code tags... db_register.sql CREATE DATABASE db_register; USE db_register; CREATE TABLE contact ( fname VARCHAR(20) NOT NULL, lname VARCHAR(20) NOT NULL, address VARCHAR(30), city VARCHAR(20), state VARCHAR(2), zip SMALLINT(5), phone VARCHAR(12), email...
  4. dupank

    Check my code please... HTML form->Perl->mySQL db

    I was given a project to create a simple HTML registration form in which the data is validated using Javascript. It is then validated on the server side using Perl before being sent to a mySQL database. This is my first time using Perl so I would appreciate some expert feedback. Have I gotten...

Part and Inventory Search

Back
Top