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. walkerdigest

    scanner connection

    Is it possible to use scanner thru classic ASP?
  2. walkerdigest

    website with two language

    1) encoding will be 8859-9 2)if I understand correctly there will be /tr and /english subfolder. For example in /english subfolder it holds texts in English. what about menu titles? slide titles? 3) it should be slide. 4) I should have session variable or cookie to tell me that I have a...
  3. walkerdigest

    website with two language

    I am starting from scratch. what would be the easiest way? I will have navigator, announcements, slade, text in the website
  4. walkerdigest

    website with two language

    I want to code a website with two language (one of them is english) how can I manage that? thanks
  5. walkerdigest

    getting $_post value numeric instead of string

    I got it I have also added if statement below $imk = imagecreatetruecolor (125, 75);
  6. walkerdigest

    getting $_post value numeric instead of string

    the following is the form <form action="resimekle_kaydet.php" method="post" enctype="multipart/form-data"> <table width="700" border="0" cellspacing="4" cellpadding="0" align="center"> <caption>FOTO?RAF EKLEME</caption> <tr> <td>&nbsp;Foto?raf Ba?l???</td> <td>&nbsp;<input...
  7. walkerdigest

    getting $_post value numeric instead of string

    when I choose option value 1 for $sayfa= $_POST['sayfa'], I want to upload image with size 150x150 but instead I always end up with 125x75 if ($sayfa == "2") { $bresim = imagecopyresampled($imb, $imx, 0, 0, 0, 0, 500, 500, $xxx[0], $xxx[1]); imagejpeg ($imb,$kopyalanacakYerb); } if...
  8. walkerdigest

    getting $_post value numeric instead of string

    in the form I have the following element: <select name="sayfa"> <option value="1">Anasayfa</option> <option value="2">Alt Sayfa</option> </select> I get the following $_POST value : $sayfa = $_POST['sayfa']; echo $sayfa + $sayfa; <-------- here I get value as 2 when I choose...
  9. walkerdigest

    Embedding images in html based email

    Thank you, now it works
  10. walkerdigest

    Embedding images in html based email

    I am trying to embed image in html based email. After I have sent email, image couldn't displayed in email body. What could be the problem? <?php $postamicerik=" <table width=\"300\" border=\"0\"> <tr> <td colspan=\"2\" align=\"center\"><b>Resimli Email</b></td> </tr> <tr>...
  11. walkerdigest

    adding numbers from mysql database

    Thank you. session.lcid = 2057 worked. it gives decimals with period but still I can't add the numbers sql2= "select * from hakemnot where hakem_id =" & hakid(k) & " and mt_baslama_yil=" & year(date) set rs2=bag.execute(sql2) toplamnot(k)=0 toplamnot(k)= toplamnot(k) +...
  12. walkerdigest

    adding numbers from mysql database

    we have changed the decimal place separator to period in regional and language option in server and reboot it but nothing changed. asp still uses comma instead of period for decimal separator. what should I do?
  13. walkerdigest

    adding numbers from mysql database

    how can I change my locale?
  14. walkerdigest

    adding numbers from mysql database

    Hi, I am trying to add numbers from mysql database but it is not working. in mysql database field is decimal(5,2) . when I display in asp file numbers it shows with comma not point , and it doesn't add numbers gives error. what should I do? the code is as below: sql2= "select * from hakemnot...
  15. walkerdigest

    Urgent!!!!

    Now in another select sql statement I got following error: err# 2147217908 command text was not set for the command object . I've given my connection file above. What could be the problem?
  16. walkerdigest

    Urgent!!!!

    The code given worked. I found out the problem. Problem was that: ID is my primary key. in sql sentence I've written down id instead of ID(in SQL table originally written as ID) but in another sql sentence I could write ad instead of Ad(in SQL table) and it worked.....
  17. walkerdigest

    Urgent!!!!

    by the way, I am using ASP not ASP.NET. Editing my code with dreamweaver.
  18. walkerdigest

    Urgent!!!!

    Vicvirk, how can I do view source of the page? I am writing the code and copying the file to server and test it.
  19. walkerdigest

    Urgent!!!!

    I have copied down above code to after my rs statement. But it didn't give any result....
  20. walkerdigest

    Urgent!!!!

    <% sqlservername ="**.**.***.***" sqlusername ="****" sqlpassword ="*****" sqldatabase ="*********" set conn = server.createobject("ADODB.Connection") conn.open "PROVIDER=SQLOLEDB;DATA SOURCE=" & sqlservername & ";UID=" & sqlusername & ";PWD=" & sqlpassword & ";DATABASE=" & sqldatabase...

Part and Inventory Search

Back
Top