|
More site info...
Dreamweaver Application Development | Forum profile
|
|
Forum profile page for Dreamweaver Application Development on http://www.adobeforums.com.
This report page is the aggregated overview from a single forum: Dreamweaver Application Development, located on the Message Board at http://www.adobeforums.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "Dreamweaver Application Development" on the Message Board at http://www.adobeforums.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on Dreamweaver Application Development:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
95
|
347
|
971
|
|
Post:
|
201
|
703
|
2,073
|
|
|
Dreamweaver Application Development Posting activity graph:
|
Top authors during last week:
user's latest post:
Help please for amateur...
Published (2009-12-02 21:44:00)
Try this for connection strings: http://www.connectionstrings.com/access-2007
user's latest post:
Group by month/year from DATE...
Published (2009-11-27 03:31:00)
Hi Chaps, Got a bit of a problem with the results, the Projects are being grouped by Month, which is correct, but the Jobs aren't being grouped by Project. - Month, Year ? - ProjectA ? - Job1 ? - ProjectA ? - Job2 .... ORDER BY projid ASC", GetSQLValueString($colname_rsInvSent, "int")); $rsInvSent = mysql_query($query_rsInvSent, $conndb2) or die(mysql_error()); //$row_rsInvSent =...
user's latest post:
PHP/MyQL - connect to database?
Published (2009-11-28 15:43:00)
Hey,I hear your frustration. I had to learn the hard way. The adobe forums are really for somewhat quick questions, or things that you really have a handle on. Trust me after what I discovered working with the developer from odesk I realize could never be accomplished through a forum post. There are way to many steps involved. My suggestion to you is go onto Odesk and create a job...
user's latest post:
I am looking for a good tutorial...
Published (2009-11-29 19:51:00)
slam38 wrote: I will be working with dreamweaver cs3, mamp 1.7 and php5 . David_Powers wrote: First of all, you need to decide which server-side technology and database you're going to use.
user's latest post:
logged in user dependant menu...
Published (2009-11-30 10:20:00)
I have a recordset that holds username from a session variable. The session variable is added from the login.php page I have several pages, two of them are causing me problems: messages.php and add_message.php Message.php is on top level of dropdown navigation. Add_message.php is a subnav link. I am trying to check, what type of user is logged in and display the correct menu for them. But...
user's latest post:
java developers
Published (2009-12-02 01:03:00)
any java developers still using dreamweaver these days?? i realize the server behaviors were dropped in cs4, but just curious as many people like dreamweaver for front end development compared to netbeans or eclipse to do the work.
user's latest post:
Developer-Online Tutorial...
Published (2009-12-01 08:55:00)
Pure Dreamweaver Cs3 Guest Book Application After adobe announced to discontinue developing and producing Adobe Developer Toolbox "ADDT", such great tools! I think we will go back to the old ages of web programming with Dreamweaver pure platform. So, in my tutorial today i`ll try to explain in details how to create a Dreamweaver Guest Book application but with out ADDT. __ Best Regards Waleed Barakat Developer-Online...
user's latest post:
Should developing sites...
Published (2009-11-24 13:00:00)
David and Jon, Thank you both for the insightful answers. That's just the sort of information I was after. Now...if I could only get my dbQuery to open my database locally, I'd be on my way... Thanks to you both! Sincerely, wordman
|
|
|
|
Latest active threads on Dreamweaver Application Development::
Started 14 hours ago (2009-12-04 03:19:00)
by David_Powers
PHP is a server-side language. The JavaScript onchange event handler is client-side - in other words, it works in the browser, not on the server. To populate a dependent drop-down menu, you need to send another request to the server to get the data to populate the dependent menu. Dreamweaver won't do this out of the box. You need to use Ajax with jQuery or a similar JavaScript library....
Started 14 hours, 11 minutes ago (2009-12-04 03:08:00)
by redbarron50
Doing a simple recordset to xml page in coldfusion and the page generates a nice xml page, and it shows the correct number of records, but the first record is empty! Each of the nodes is there, but they are empty. Here is the page: http://www.rrps.net/DistrictNews/news.cfm?news Here is the code: ************************************************ <cfsetting showdebugoutput="no"> ...
Started 21 hours, 54 minutes ago (2009-12-03 19:25:00)
by jon@cmiwebstudio
Started 1 week, 2 days ago (2009-11-24 20:29:00)
by DwFAQ
tlw444 wrote: Any solutions? Provide more information.
Started 1 day, 19 hours ago (2009-12-02 21:39:00)
by bregent
Read the error message - it's telling you exactly what's wrong: Parse error : syntax error, unexpected ':' in D:\Hosting\5199406\html\contact.php on line 8 You have an illegal character in your variable name. Change $Name: to $Name
Started 3 days, 8 hours ago (2009-12-01 08:49:00)
by Developer-Online
Hi, Try to read this article, i found it useful and may help! http://www.tizag.com/mysqlTutorial/mysqlwhere.php __ Best Regards Waleed Barakat Developer-Online Creator and programmer
Started 1 day, 9 hours ago (2009-12-03 08:19:00)
by mk00pa
I managed to resolve this by changing the datatype in mysql from text to varchar.
Started 1 week, 2 days ago (2009-11-25 11:09:00)
by bregent
You've got a lot of info in there so let's just start with a few items. > connect to y Access database; and How much traffic do you expect? Access works great for low volume sites but not very good for higher volume. Consider using MS SQL instead or in the future. >The website runs off my laptop What do you mean by this? Are you saying that the site is running fine on your ...
|
|
Hot threads for last week on Dreamweaver Application Development::
Started 1 week, 1 day ago (2009-11-26 05:17:00)
by David_Powers
If projcompletedate is in DATE format, ORDER BY projcompletedate will put them in the right order. If you want to use some sort of header in your output to indicate the month and year, use an alias in the SQL to extract the date parts: MONTHNAME(projcompletedate) AS themonth, YEAR(projcompletedate) AS theyear. You can then use conditional logic to display the headings: // initialize ...
Started 1 week, 4 days ago (2009-11-23 04:37:00)
by David_Powers
No, it's not particularly difficult. You're obviously using a login script that you have obtained from somewhere else, because the code is very different from that generated by Dreamweaver. Judging from the code, you're not using a database to store the usernames and passwords. So, you'll probably want to save the details to an external text file. Add the following code in the place ...
Started 1 week, 2 days ago (2009-11-25 16:37:00)
by bregent
Do you have the port number for the database somewhere in the connection parameters?
Started 5 days, 9 hours ago (2009-11-29 08:07:00)
by David_Powers
You need to create the recordset in the ordinary way, and then add the Recordset Navigation Bar to the page. That will create all the code necessary to paginate through the recordset. Finally, add the code that adds your array to the end of the query. The part that builds the query will eventually look like this (I'm leaving out all the other code): $Wheres = array();
// Build your array...
Started 1 week, 3 days ago (2009-11-24 11:15:00)
by jon@cmiwebstudio
Without posting your code and verifying the data exists, there's no way to know for sure what is wrong.
Started 5 days, 8 hours ago (2009-11-29 08:21:00)
by David_Powers
slam38 wrote: Does anybody know of a good tutorial either online or in book form that would cover this type of website, or these types of areas. What you're proposing to build is quite an ambitious project, particularly if you have created only one database-driven website before. Several years ago, I built a complex web-based application with the help of someone who had been designing ...
Started 6 days, 20 hours ago (2009-11-27 20:37:00)
by DwFAQ
Started 1 week ago (2009-11-27 11:10:00)
by David_Powers
Paul, You posted exactly the same question in the WebBiz forum 12 minutes later. I saw the other post first and replied there. I don't have Windows 7, but I think the problem lies with the way Apache is interpreting the URL, as I experienced a similar problem with Vista when I didn't set up a virtual host correctly in the Windows Hosts file. Maybe someone else with Windows 7 experience can...
Started 1 week, 2 days ago (2009-11-25 05:00:00)
by hannja
you write: "new user creation so that users can leave comments" + "to download content" I would prefer and suggest that you program a login function with php. hanna
Started 1 week, 1 day ago (2009-11-26 03:49:00)
by The_FedEx_Guy
Its very strange, that page is now working, but when I go through the rest of the pages and press back it goes blank on the page that the back button lands on, the forward button also makes the page blank
|
|