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 Wanet Telecoms Ltd 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: karren
  • Content: Threads
  • Order by date
  1. karren

    input not showing within div in netscape 4.7

    hello all, i am having a problem where the input box will not show within a div tag when i am trying to view it in netscape 4.7. i am creating a show/hide function, which works fine, but it only shows the text within the div rather than the input box. anyone know why this would happen? here...
  2. karren

    disable changing text in text box

    hello, i am creating a form where i don't want the user to be able to modify the value that appears in the text box (because this value is automatically created by a calculation script i am using). i have tried several methods that disable any clicking in the textbox and disable selecting the...
  3. karren

    passing an array via querystring

    hello all, i have a variable that stores an array and i want to pass it to a new page using a querystring. any ideas on how to do that? thanks, karren
  4. karren

    page load question

    i have a question: i want to create a page where a certain message appears while the page is loading and this message changed once the page has loaded. is this possible to do? where would i start with this? thanks all! karren
  5. karren

    html appearing in email being sent from form

    hi everyone, i have an issue with emails being sent from a form, using the php mail() function. the code i'm using automatically inserts link breaks and converts urls to links in the email body (which is written in a textarea) that is being sent out. however, some people who receive the email...
  6. karren

    mass email problem

    hello everyone, i have created a mailing list tool that sends out mass emails to email addresses that are pulled out from a mysql database. the problem is that there are over 1000 email addresses that it loops through and the script seems to time out after sending to the first 200 users or so...
  7. karren

    automatically print

    hey all, i was wondering if it's possible to bypass the printer dialogue screen and automatically print an html page using the window.print() function (or any other javascript functions)?
  8. karren

    swap plus/minus images in collapsable menu

    hello all, i am trying to make a very simple show/hide menu where some content is shown or hidden by clicking. i've got the show/hide piece to work, but i cannot get the image to swap from plus to minus when the user clicks on the plus image to expand the menu. here is my javascript code...
  9. karren

    show/hide checkbox question

    hi there, i am trying to get a checkbox to show an input box when it is clicked on but i can't get it to work. here is the code i have so far: <script type="text/javascript"> function showhide2(thismenu) { if(document.forms[0].ChangeInPracticeOther.value=='Left practice') {...
  10. karren

    displaying 4 images per line on web page

    hi everyone, I'm making a database-driven site and i'm calling about 24 images from the database to be displayed on the web page. but i want only 4 images to be displayed per line so there is no horizontal scrolling. i'm not sure how to do this and from what i have tried, i'm not getting any...
  11. karren

    Opening a new window with a specific browser

    Hi All, I was wondering whether its possible to open a link in a new window which is in a different browser than the page which the link is on? Mainly, there are users using Netscape 4.7 as their default browser, but I want them to be able to click on a specific link (to an application that...
  12. karren

    Help printing results from a table on asp page

    Hi everyone, I am working with a couple of tables and am having trouble printing out the right results on my asp page. This is what i'm trying to do: I am working on a newsletter app. and have a form with muliple select checkboxes for the user to subscribe to a list. This checkbox form is...
  13. karren

    deleting session variable

    hi all, i am having a problem where i am not able to delete a session variable. the session variable that i'm using is session.sessionID, so the number is automatically generated by the server. i've put the sessiontimeout as 30 minutes. the code i'm using to delete the session.sessionID...
  14. karren

    passing variables to new pop up window

    hi all, i want to make a page where the user can have a &quot;printer friendly version&quot; of that page open up in a new window. this first page contains a table that has dynamically generated information from a database. in the new window, i want to pass variables from the first page so...
  15. karren

    bizarre img src problem

    Hello everyone, I have a problem where i am trying to source an image that is contained in an &quot;images&quot; folder, mapping it out to the correct path and it still doesn't show up. meanwhile, when i map out the name of another image contained in the same folder, it appears fine. I am...
  16. karren

    multiple keyword search engine

    Hi everyone, I am making a multiple keyword search engine that will search 3 different tables. it works ok, except that when i enter two keywords, it displays duplicate results. if a person enters several keywords into the keyword text box, i explode the string into an array. then using the...
  17. karren

    putting query results in arrays

    Hi All, i'm new to php and i'm not sure how to put results from a database query into arrays. i have a table with the name of artists and i do a select statement, selecting all the artistnames (all under one field name, &quot;artistnames&quot;). I just want to know how i can get these results...
  18. karren

    Hi Everyone, I am working on a m

    Hi Everyone, I am working on a mailing list where one table (artistnames)holds all the music artist's names and artistnameID, which are displayed upon registering for the subscriber to choose from. Another table (newsprefs) holds the subscriber's email address with the subsciber's mailing list...
  19. karren

    sending mail to one group email address

    hey all, I am workign on sending a newsletter to a list of emails from a database. instead of sending each person in the database an email at their individual address, I want to send them an email where a single email such as &quot;to: groups@yahoo.com&quot; appears the &quot;to:&quot; field...
  20. karren

    Execute query from VBA

    I am trying to print the value from a query on my form. So, I have a text box on the ClaimClient_MainForm form called ClaimCount. My query goes like this: dim sql as string sql=SELECT Claim.ClientID, Count(Claim.ClaimID) AS CountOfClaimID FROM Claim GROUP BY Claim.ClientID HAVING...

Part and Inventory Search

Back
Top