Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: lazydays
  • Content: Threads
  • Order by date
  1. lazydays

    Photo upload preview

    I have a script which uploads a photo to my server. However, I want to be able to preview this before actually uploading the photo. Is there any way this can be done in PHP?
  2. lazydays

    Split function containing INSERT

    Hi, I have taken over a website which has a function that inserts data to a table using the recordset. I need to split the insert query into 2 as we want to split the table being inserted into. This is fine - I can write the queries required, but I am used to PHP and am unsure of how to run a...
  3. lazydays

    "Browse" button

    Hi, I want to be able to click a button and browse my hard drive and then import the selected file to the correct table. I have read a few threads about this, but to be honest, it goes over my head. I am new to VB programming so a guide for plebs would be gratefully received!!!
  4. lazydays

    Read receipts

    I think I already know the answer to this, but thought I'd double check! Is there a way to get read receipts when sending mail via php mail() function?
  5. lazydays

    European hosting

    Hi, I am well aware that if you want to promote a UK website, then you host on a UK server, rather than a US server. However, I have a friend who will be having a .com domain who wants to target mainland Europe - specifically France, Spain and Germany. Can anyone advise me where we should look...
  6. lazydays

    Best way for remote access

    Hi, I have been asked the best way to access a remote computer, but I know very little about this sort of thing. My mate splits their time between the UK and France, and wants to be able to access the UK computer while in France. What is the best way - PC Anywhere, WAN or what? And does the...
  7. lazydays

    td height

    I am having a spot of trouble with td height and IE. I have a table with 3 colums and 3 rows - the middle column spans all 3 rows and the top 2 rows are fixed height - the bottom row expands as needed so has no height set. This renders exactly as it should in FF and Opera, but IE expands the 2...
  8. lazydays

    IE and opaque images

    I develop sites for FireFox first and then worry about IE after. I have a site that renders perfectly in Firefox, but not in IE. I use an opaque gif as a background image in a table cell which is fine in FF but not shown in IE - although it is there in the source code. Does IE not work with...
  9. lazydays

    PHP html email

    Hi, I have just set up a form to send html newsletters. The newsletter shows up fine in webmail, but if you download it to an email client (I have Outlook) it downloads as an attachment. Is there anyway I can get round this so it shows up as HTML when it's downloaded?
  10. lazydays

    PHP FTP function

    I have written a script that uploads .rm files to my server - it all works fine. However, my host has allowed me the use of their streaming media server, and I need to upload to that server using a script on my normal server and use the ftp function. Every example I have found, uses only local...
  11. lazydays

    Manipulating dates

    Hi guys! I am having a complete mare and now can't see the wood for the trees!! I have a table which holds orders - I want to be able to see how many times each customer has ordered, and when they last ordered. I am there apart from the last time they ordered. Currently the date of their...
  12. lazydays

    $HTTP_SESSION_VARS

    I am having a bit of trouble as our ISP have moved us onto a new server, but an older version of PHP (vers 4.0.6). I previously used $_SESSION['userid'] to set the session variable, but have now changed that to $HTTP_SESSION_VARS['userid'], but the session is not being transferred between...
  13. lazydays

    PHP conditional dropdown boxes

    I have 2 drop down lists which are populated by php from a database. However, I want the second drop down box to be populated depending on what is selected in the 1st box. I am pretty sure that I can get the 2nd box to populate correctly, but I don't know what function to use to get the page to...
  14. lazydays

    PHP Sessions

    Hi, I am having a bit of trouble getting my head rounf Session Variables at the moment. I have the following code <?php session_start(); require_once ("../../mysql_connect_personal.php"); $query = "SELECT * FROM user_details WHERE user_id = '$user'"; $result = @mysql_query($query); $item =...
  15. lazydays

    CSS positioning

    Hi, I have used external CSS for formatting in the past, but am now trying to use it for positioning as well. I can make it work in Firefox, but in IE, it’s all over the place. Positioning is done using pixels if that makes a difference. Am I doing something weird, or is this one of those...
  16. lazydays

    Conditional javascript

    Hi, I am having a problem as I know very little about javascript. I have a form with 3 drop down boxes - the first box is a populated using thestandard <SELECT> tag. The 2nd box is populated with values depending on the choice made in the 1st box, and the 3rd box depends on the choice in the...
  17. lazydays

    Operation is not allowed when the object is closed

    I am getting the following error message. ADODB.Recordset error '800a0e78' Operation is not allowed when the object is closed. It updates the table and displays the message so I don't know what is wrong with it. When I comment out objRS.Close Set objRS = Nothing it works fine. Any...
  18. lazydays

    Appending using SQL

    I am trying to append data from a database held on a webserver, to a replica database on our work server. I have the following code. Dim objConn Set objConn = Server.CreateObject("ADODB.Connection") objConn.ConnectionString = "DRIVER={Microsoft Access Driver (*.mdb)};" & _ "DBQ=" &...
  19. lazydays

    DSN-less connection strings

    I tend to use DSN-less connections to databases - don't know why, but it just seemed to happen that way! However, I am designing a site with a datasource directory below the root of the site, and I am having trouble setting up the connection string. My script is in...
  20. lazydays

    Maintaining a secure state after login

    Hi, I have created a login script using asp and a database - that works fine. However, I want to be able to make sure that all pages within our restricted area cannot be accessed unless the user has logged in. If a user has not logged in I want to redirect them. I have a feeling this may be...

Part and Inventory Search

Back
Top