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 Mike Lewis 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: Herminio
  • Order by date
  1. Herminio

    FTP client w/ Auth SSL support

    Hey guys, i'm testing Linux for a while now, and i need an FTP client w/ AUTH SSL support, 'cause i can only connect to my sources w/ AUTH SSL. Anyone knows a way? I tried w/ gFTP but can't find the way to do that, i think it doesn't support AUTH SSL at all!!!
  2. Herminio

    Displaying url from db (newbie question)

    Thanks, that worked fine! I'll see if i follow your sugestion and start using those alternatives.
  3. Herminio

    Displaying url from db (newbie question)

    Warning: printf() [function.printf]: Too few arguments in dbteste.php on line 18 line 18 --> printf("Homepage: <a href='%s'>%s</a><br>\n", mysql_result($result,0,"URL"));
  4. Herminio

    Displaying url from db (newbie question)

    I'm a real newbie on PHP, but i want to know as much as i can, so here's my first problem(it wont be the last, i assure you) I have this script: <?php $db = mysql_connect("localhost", "********", "*********"); mysql_select_db("guestbook",$db); $result = mysql_query("SELECT * FROM...
  5. Herminio

    Installing a linux FTP Server

    i have bought a dedicated server on a datacenter, and now i want to install linux and an ftpserver software.
  6. Herminio

    Installing a linux FTP Server

    hi, i just bought a server where i wantr to install an ftp server with accounts for members. Where can i find the best tutorial to learn how to do it? I only have the login/pass for the empty server, i have to install linux and configure an ftp server(probably with ProFTPd). Somebody want's...
  7. Herminio

    Newbie questions - How to install apt-get?

    I'm a Linux newbie, and i've heard about something called apt-get, the problem is that i don't even know what it is, or what it does, can someone help me? Thanks in advance Herminio, Portugal
  8. Herminio

    IIS - Can't install

    Hey guys, here's my problem: I have XP Pro installed a long time, now i needed to install IIS e gone the to Control Panel;Add/Remove Programs;Windows components and selected IIS, it starts the installation and then when it begun to copy files from the CD it gaves an error "can't copy file [name...
  9. Herminio

    Strange error in INSERT statement

    ok, just forget it, i have to insert the idopiniao in the DB to. Sorry for the time i've made you spend with this silly question. Herminio, Portugal
  10. Herminio

    Strange error in INSERT statement

    I have this code : <% dim nome dim coment coment = request.form(&quot;com&quot;) nome = request.form(&quot;nome&quot;) id = request.querystring(&quot;id&quot;) Set conn = Server.CreateObject(&quot;ADODB.connection&quot;) strCon = &quot;DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=&quot; &...
  11. Herminio

    Can someone help me with this code??Please

    Thanks a lot mwolf00, based on your last suggestion i've changed set id = opin(&quot;idopiniao&quot;) to set id = opin(&quot;opiniao.idopiniao&quot;) and voilá, it works just fine, you are great, unfortunatelly i just can give one star for all of your atention, thanks one more time. Herminio...
  12. Herminio

    Can someone help me with this code??Please

    looking at the SQL instruction that i have on one of my last posts can you tell me if there's anything wrong with it? Opiniao is the &quot;main&quot; table and Coments is the one that is related with the first by the Id.Opiniao field. Herminio, Portugal
  13. Herminio

    Win env. variable sent by a Form ?

    i think you should get to that result using Request.ServerVariables (&quot;REMOTE_HOST&quot;), when the mail is sent just include an hidden field to get the computer's name. Hope this helps Herminio, Portugal
  14. Herminio

    Can someone help me with this code??Please

    yes, that's exactly what's happening, what's the problem?
  15. Herminio

    Can someone help me with this code??Please

    i did exactly that i have a left join on the query heres is the sql SELECT * FROM Opiniao LEFT JOIN Coments ON [Opiniao].[IdOpiniao]=[Coments].[IdOpiniao]; is there anything wrong with the SQL? Herminio, Portugal
  16. Herminio

    Can someone help me with this code??Please

    <% Dim id set id = opin(&quot;idopiniao&quot;) Dim lastarticle lastarticle = &quot;&quot; do while not opin.EOF If opin(&quot;idopiniao&quot;) <> lastarticle Then %> <table width=450 border=1> <tr> <td bgcolor=#3399cc width=400> <font...
  17. Herminio

    New to ASP -insert from form

    This is how you make a connection DSN-less <% Set conn = Server.CreateObject(&quot;ADODB.connection&quot;) strCon = &quot;DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=&quot; & Server.MapPath(&quot;yourDB.mdb&quot;) conn.open strcon %> DSN <% Set conn =...
  18. Herminio

    Problem with looping

    Help me, i'm still stuck with this question that i've posted yesterday.
  19. Herminio

    Problem with looping

    Thanks, it worked James, but no there's another problem, on the first three records the id is passed correctly, but on the fourth and all the others till the end of records the id isn't passed, i think this as something to do with the second link Can you help me with this?
  20. Herminio

    Problem with looping

    I guys, i'm having a problem with a loop, i'm going to put the code for you to see it, it's all working just great, however there's one thing that's driving crazy, i can't get the loop to work on the idfields of the DB, i want to pass the id for the next page in order to use it in the query but...

Part and Inventory Search

Back
Top