Recent content by triggermorf

  1. T

    Classic ASP...How to get a page to automatically redirect to the previous page.?

    I am creating a news site that displays articles based on there ID from a database. The user can also view images and comments related to that article only. The problem I am having is when the user wishes to go back they cannot return to that specific article web page. I cannot do a simple...
  2. T

    Classic ASP vs ASP.NET vs PHP?

    I am creating a web system for uni but I have to create it in classic ASP with a MySQL database running a microsoft server. I don't have a choice in the technologies I use. As part of the written work I have to compare the above technologies. The only problem is I have to come to the conclusion...
  3. T

    SQL ASP website question?

    I have the following SQL statement " searchRS = "Select * FROM staff where staffname like '%" & request.form("inputsearch") & "%' order by staffname" & request("order_var")" It is a search box on my website that displays whatever the user types in. The only problem is it displays everything...
  4. T

    Only display certain details from an access database display using ASP classic?

    I have written a booking system and when a shop employee logon they can view bookings they have. Although at the moment they can see all the bookings from the bookings table in the access database. I would like it so they could only see there own bookings and everyone elses as this has caused...
  5. T

    I am creating a booking appointment system using asp classic but the only...

    ...problem is people can double book.? I am creating a booking system for a friends website that books appointments for a person on a specific date. I have created the booking system fine but the only problem is that people can double book on the same day with the same person that somebody else...
  6. T

    XHTML drop down box that takes its options from an access database using classic ASP?

    I have an XHTML form with a drop down box but I want it to display its options from a table in an access database using ASP classic. Any help would be great because I have no idea were to start with it. Cheers for any help :).
  7. T

    Using ASP classic to display images from an access database.?

    I am trying to display images from an access database using ASP classic. The image file paths are stored in the database in a text field e.g. images/images1.jpg. The images themselves are stored in a folder named images in the same folder as the database. When I run the script only the image...
  8. T

    Retrieving tickbox details from an access database using PHP.?

    I am retrieving data from an access database using PHP and display it within a table. When I try and retrieve a tick box from the database I get an error. The error happens on the following line in my code "<?php echo $formRs->Fields['check_details']->Value ?>". Does PHP have a problem with tick...
  9. T

    Retrieving tickbox details from an access database using PHP.?

    I am retrieving data from an access database using PHP and display it within a table. When I try and retrieve a tick box from the database I get an error. The error happens on the following line in my code "<?php echo $formRs->Fields['check_details']->Value ?>". Does PHP have a problem with tick...
  10. T

    PHP coding error please help?

    I am trying to insert data from a form into an access database but it is just refusing to work. I am getting no errors. Some help would be great as I am very new to PHP. My code is below: <?php $db = realpath("db\testdatabase.mdb"); $conn = new COM('ADODB.Connection') or exit('Cannot start...
  11. T

    Retrieving tickbox details from an access database using PHP.?

    I am retrieving data from an access database using PHP and display it within a table. When I try and retrieve a tick box from the database I get an error. The error happens on the following line in my code "<?php echo $formRs->Fields['check_details']->Value ?>". Does PHP have a problem with tick...
  12. T

    Retrieving tickbox details from an access database using PHP.?

    I am retrieving data from an access database using PHP and display it within a table. When I try and retrieve a tick box from the database I get an error. The error happens on the following line in my code "<?php echo $formRs->Fields['check_details']->Value ?>". Does PHP have a problem with tick...
  13. T

    Which one should I use ASP classic or PHP?

    I am planning on creating a dynamic web system that will be used with a MySQL database. I plan to use either Classic ASP or PHP, but I don't no which? The system will run on a windows server 2003 running IIS as a minimum. I am very new to both so it doesn't really matter which one I use. But...
  14. T

    Displaying images from an access database using ASP Classic?

    I have created a drop down list that acts as a search field for my website. The user selects an option then clicks GO. When the user has selected an option from the drop down list they will get a display of images from an access database using ASP classic. The only problem is I keep getting the...
  15. T

    I want to display images randomly from an access database using asp classic on a

    webpage. Any ideas? On one of the pages of a website I am creating I want to create an advertisement that displays a random image every so often from an access database using ASP classic. Only problem is I have no idea how to go about it? Any help would be great. Please do not spam by question...
Back
Top