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 dencom 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: arm207
  • Content: Threads
  • Order by date
  1. arm207

    error:Before start of result set

    What is the cause of this error... "error:Before start of result set" source code is the following... rs = s.executeQuery( sql2 );
  2. arm207

    how to retrieve day, month and year in jsp

    how can I retrieve day, month and year in jsp?
  3. arm207

    Printing out exceptions

    if i have catch (Throwable t) { ... } how do I print out the exception?
  4. arm207

    Jasper Exception

    Hi, I'm getting a wierd jasper exception and not sure how to debug it further. What's interesting is that my ViewSPClient.jsp page doesn't have 129 lines. So I'm confused. Please help. What's the root cause of something like this? How do you debug such an error? Her'es the exception I'm...
  5. arm207

    jsp and user input

    hi, I'm new to JSP but know java. Do you guys know of an example where you can have an html UI and pass the user input to a jsp page. How is that done? thank you
  6. arm207

    $_SESSION

    suppose I need the variable 'loginUsername' to be global to a sesssion. so first thing i do, session_register("loginUsername"); I have a showUserStatus() in another script that I want to print out the value in loginUsername. How do I use the $_SESSION variable to acutally get the value of...
  7. arm207

    duplicate key error

    hi, would anyone know what the cause of the following symptom is... Fatal error: MySQL error: 1062 : Duplicate entry '0-1-1' for key 1 in why is it not allowed to have multiple entries with same value?
  8. arm207

    parsing error, formVariables

    for example... $query = "UPDATE users SET user_name='$formVariables["username"]' , are the ' and " in the right places, I seem to be getting a parsing error. I need to know if there is something wrong with this syntax... '$formVariables["username"]'
  9. arm207

    PHP session timeout

    Hi, Is it possible to provide php session timeout functionality by modifying php.ini? How? If the above is not possible, does anyone know of an example on how to do php session timeouts?
  10. arm207

    @ character

    what's the difference between... $con = @ mysql_connect(... and $con = mysql_connect(...
  11. arm207

    MySQL error: 1064

    Does anyone know what generally causes error code 1064 to appear? as in... Fatal error: MySQL error: 1064 : You have an error in your SQL syntax near '' at line 1 in
  12. arm207

    Parse error:

    does anyone know what- Parse error: parse error, unexpected T_STRING in ... means?
  13. arm207

    select on table pausing indefinitely

    hi, when i try the following at the mysql command line... select * from items; nothing returns, it just hangs indefinitely. Does anyone know why this is? I have ran "unlock tables" I have already logged into mysql, all its services are running, and I have selected the right database, but...
  14. arm207

    unable to parse data passed by URL

    when I try to pass data thru URL using embedded links, the receving page doesn't automatically populate the php variables. Does anyone know why? for example... <a href="test.php ?name=bob&amp;gender=male">name and gender</a> The $name and $gender come out to be blanks? Any suggestions?
  15. arm207

    wierd mysql.sock error

    hi all, I'm puzzled. So I've got a few php pages that connect to mysql, and I've placed mysql.sock file in /temp/mysql.sock and updated the configuration files accordingly. So most of my php pages work just fine. However, I created a page recently and with almost the same code to connect to...
  16. arm207

    mysql UPDATE error

    hi, the following results in "Invalid SQL syntax error". I tried a few different options but none seemed to have worked. Would someone please help. I believe the error is around/after the WHERE statement. $query = "UPDATE ATAMA_users SET ". "user_name = \"" . $formVars["username"] . "\", " ...

Part and Inventory Search

Back
Top