12-08-2008, 01:11 AM
|
#4 (permalink)
|
|
The Contributor
Join Date: Jan 2008
Posts: 87
Thanks: 49
|
To simplify, I want to do something like the following:
PHP Code:
<% string forum_name = Page.Request.QueryString["forum_name"];
Page.Response.Write("Now browsing the threads about " + forum_name); %>
Insert Into threads ([thread_name], [forum_name], [thread_author], [time_created]) Values(?,<% forum_name %>,?,?)
But that isn't valid, but that shows the idea of what I want to be able to do.
|
|
|
|