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 strongm 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: *

  1. lifelineamerica

    SESSION issues

    This seems so silly but its driving me nuts! I redirect people who reached a page they shouldn't have. So if the session I am looking for is not there, they are redirected back to the page with variable ks=1 set (ks as in kill session) I have this condition in the home page where if they have...
  2. lifelineamerica

    Script redirecting instead of executing

    I built a script that will send an email to a bunch of people from a list. At each row, I have a checkbox to select whether to include that person in the mass email or no. Funny thing that's happening is that if I choose less than 10 people to email it goes through, however if I choose...
  3. lifelineamerica

    Select duplicate charges made on same card same day

    I am trying to locate all records paid by the same card (last 4 digits were stored and column name is last_4) on the same date (column is called date_made, and is in the date_time format) SELECT * FROM res_reservations a INNER JOIN res_reservations b ON a.last_4=b.last_4 WHERE a.date_made LIKE...
  4. lifelineamerica

    Mail not working in PHP5

    I migrated from a shared server that ran PHP 4 to a new one running PHP5. I'm having trouble sending email as in this simple example: <? $tocust ="me@yoursite.com"; $mail_contents="This is a test email"; $subjectcust ="Hello Again!"; $mailheaderscust ="From:Mysite.com...
  5. lifelineamerica

    Simple toFixed(2) issue

    I'm trying to display values selected via radio button. It works fine as: function GetSelectedItem() { var thefrm = document.forms['showtimes'].elements; var theans = thefrm['time_id[]']; for(i=0;i<theans.length;i++) { theel = theans[i]; tnum=theel.value if(theel.checked == true){...
  6. lifelineamerica

    White gap in between div's only in IE6

    I'm getting a horrible gap where there should be none but only in IE6. Page I'm working on: http://www.washny.com/avatar2/ The css code for that section is this: div.content_top_cap{ float:left; width:900px; background-image:url(../imgs/main_content_topcap.gif)...
  7. lifelineamerica

    IMAP on Mailtrust

    I have an account with Mailtrust.com. They are a popular email host. I copied my parameters from a regular email client (ie outlook) where everything works fine. $server = '{imap.emailsrvr.com:143}'; $mailbox = 'INBOX'; $username = 'me@mydomain.com'; $password = 'mypassword'; //connect to...
  8. lifelineamerica

    Sending mail at a later date

    I have a system set up where a bunch of users log in daily. I want users to be able to set reminder emails to each other to check on certain tasks, but such emails are to be sent at later dates. I guess I can: 1). store the contents of the form into database with the timestamp of the time it...
  9. lifelineamerica

    Select within select?

    Let me explain myself as best as I can I think I need a select within a select. This is for a school bus run. I want to pull from a db all kids I am picking up at each address. Table 1: Parents - Parent_id, Address, etc. Table 2: Kids - Parent_id, Kid_id, ect The following will output on each...

Part and Inventory Search

Back
Top