Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
create procedure sp_insertGuestBook
i_name varchar(30),
i_hometown varchar(30),
i_email varchar(100),
i_message varchar(3000),
i_ipAddress integer,
i_display varchar(3),
as
INSERT into guestbook
(name, hometown, email, message, ipAddress, dateposted, display)
VALUES (@i_name, @i_hometown, @i_email, @i_message, @i_ipAddress, getDate(), @i_display);
<cfstoredproc datasource=="#DSN#" procedure="sp_insertGuestBook">
<cfprocparam cfsqltype="cf_sql_varchar" value="#form.name#" type="in">
<cfprocparam cfsqltype="cf_sql_varchar" value="#form.hometown#" type="in">
<cfprocparam cfsqltype="cf_sql_varchar" value="#form.email#" type="in">
<!--- and so on --->
</cfstoredproc>