Ask a Question related to Coldfusion Database Access, Design and Development.
-
Viky #1
Passing Database Value to another page
Hi
I am retrieving records 3 fields out of 5 from the database in the main page.
I want when the user click on the one of the heading field record displayed in
main page.. my user should be able to go to new page where in only details of
the certain record which is clicked is displayed..
please help.. urgency.. thanks in advance
Viky Guest
-
problem with polish letters passing to database
hi. I have problem with polish letters like '?????????' passing from flex to CF script writing them to database . All I get is a string like... -
passing data through a database
Hi: I made one page that passes data through a form to another page. The destination (confirmation) page checks if the user filled the form or not... -
Passing database resource to object (OO)
Wan I insatiate an object I want to pass a database resource that can be used throughout the object. The below code should indicate what I want but... -
HELP! Passing from database to asp page allowing user input then passing to another database.
My big problem is I'm a newbie working with someone else's code.(See code below) What I want to do is for the records that have a purchase order... -
Passing database info to page allow user input then pass into another database
Hi I really am going crazy! I'm using VBScript, ASP, and SQL My page reminds me of a shopping cart but looking at shopping cart examples has not... -
TimMcGeary #2
Re: Passing Database Value to another page
Do you have an id of the headline content that links from the news table to the
headlines table? For example, I would do the following:
<cfquery name="headlines" datasource="asian-db">
SELECT Headline, subheadline, Contributed, Details, headline_id
FROM news
WHERE Category = 'headlines'
</cfquery>
<cfoutput query="headlines">
<tr>
<td class="style6"><a
href="news.cfm?headline_id=6">#headlines.Headline# </a></td>
</tr></cfoutput>
With the news.cfm page reading the headline_id=6 and reporting the content
from the table with that id.
Does that help?
TimMcGeary Guest



Reply With Quote

