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!

Recent content by colep

  1. colep

    File Browse Button Question

    Is it possible to move the Browse button to the left of the input box for a file input filed? My customer wants the button to the left. Thanks in Advance!! Cole
  2. colep

    Curly Braces in Write()???

    Thanks for the info!!!! :-)
  3. colep

    Curly Braces in Write()???

    I am new to C# and I have a question regarding what the {} do within the Write & WriteLine methods... If you look at the code below, this line in particular is confusing me System.Console.Write("{0,24}", s); - what does the {0,24} do here??? Thanks in advance!!! Nicole class...
  4. colep

    Form won't submit on Mac IE

    ya know, I'm not sure... ;) One of my co-workers built the page and I noticed that it wouldn't submit in Mac IE so I was trying to figure the problem out... I think it was done that way, cuz the page has an infinate # of forms on it and each requires about 6 or 7 hidden fields, so I think it may...
  5. colep

    Form won't submit on Mac IE

    I found out what was causing it not to submit... Evidently you have to have at least one input field in the form for Mac IE to submit the form... I didn't have any input fields as I was passing all the info through the action url... So I just created a hidden field and it worked... Just thought...
  6. colep

    Form won't submit on Mac IE

    I'm not using frmProduct.submit() for each, I'm using frmProduct123.submit() for frmProduct123, frmProduct124.submit() for frmProduct124, and so on... I was just using frmProduct as an example form in the submit buttons code above so you could see how I was trying to submit the form... I am...
  7. colep

    Form won't submit on Mac IE

    IE on Mac can't handle submiting a form through a link if there are multiple forms on the page?
  8. colep

    Form won't submit on Mac IE

    That did not work either... no error, it just won't submit... I was not able to get the mouse overs to work on all browsers in the input type=image... Also, there are more than 1 form on the page each are named frmProduct + product id (frmProduct123, frmProduct 124, frmProduct125, and so on...)...
  9. colep

    Form won't submit on Mac IE

    I'm trying to submit a form using an image link (using a link instead of an image form button so a mouse over image can be used). It works fine on all other browsers, but not on Mac IE - no errors are found and it does absolutely nothing. Here's what I've tried: 1.) <a href="javascript...
  10. colep

    JOIN Problem

    Can anyone tell me what is wrong with this Select Statement??? SELECT morning_show.page_header,first_dj.img AS img1,second_dj.img AS img2 FROM morning_show LEFT JOIN djs AS first_dj ON first_dj.id=morning_show.dj1_id LEFT JOIN djs AS second_dj ON second_dj.id=morning_show.dj2_id; It is giving...
  11. colep

    Unwanted '!' in email

    Thanks for the help pfournier!!! That was the problem... I just broke up the description part of it, and it no longer displays the '!' Thanks Again, Cole ;)
  12. colep

    Unwanted '!' in email

    The data in the DB table is: <p>A native of England, Wright came to the United States in 1978. Prior to joining the Wolves, he spent three years working for the state of Minnesota, first as a consultant working on bids for major national and international events, including the programming for...
  13. colep

    Unwanted '!' in email

    Ok, here's the code: $sql = &quot;SELECT * FROM events WHERE id='$_POST[event_id]'&quot;; $result = mysql_query($sql); $row = mysql_fetch_array($result); $strMail = <table> <tr> <td>&quot;; if ($row[title] != &quot;&quot;) $strMail .= &quot;<div...
  14. colep

    Unwanted '!' in email

    I have a strange thing happening... I am pulling content from a MySQL table and inserting it into an email message and an exclamation point is appearing in the email. There isn't one in the table and there isn't one when I just display the content from the table to the page... It's the strangest...
  15. colep

    Determine Parent URL??

    No PayPal doesn't (as far as I know). That's the bad thing about it. I'm building this site for someone else and they want the customer to have the option to pay with PayPal... I guess I'll just use the HTTP_REFERER and see how well that works. Thanks for your help. Cole ;)

Part and Inventory Search

Back
Top