User Profile

Collapse

Profile Sidebar

Collapse
gabosom
gabosom
Last Activity: Oct 29 '08, 10:33 PM
Joined: Sep 24 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • I just want to note, it's not bad practice to come up with CSS hacks for IE. It is definitely NOT recommended to do so, but if by ANY reason you have no choice but hacks, well, you can do it.

    For your particular issue, can you show us the code?
    See more | Go to post

    Leave a comment:


  • gabosom
    replied to Call list box when checkbox is clicked.
    in PHP
    What do you mean by "calling a list box"?
    See more | Go to post

    Leave a comment:


  • gabosom
    replied to caputuring the var on address bar
    in PHP
    I feel kind of confused with your question, so I'm going to answer how to pass the variable with and without PHP.

    With PHP:

    use the $_REQUEST array to get the information defined, in your case, it's $_REQUEST["id"]

    WIthout PHP:
    You can use javascript to parse the URL, var url = window.location and you'd get the url. You can parse it and then use the variable stored in JS or forward to...
    See more | Go to post

    Leave a comment:


  • I've heard a lot about different IDEs. If you think you can READ code very good and understand code easily, I would recommend Notepad++. It's so lightweight, it's not a complete IDE, but it suits my needs if all I need to develop web apps is see code.
    See more | Go to post

    Leave a comment:


  • gabosom
    replied to Problem on paging
    in PHP
    what comes to my mind is that you're trying to do a query while looping in the results of another query in this part. I'm not really sure if you could do that. I would recommend to first finish working with all the results from one query, store the info you need in an array and then work on the second query with that array OR create two links to the DB and then one query use it with one link and the other with the second link.

    Cheers,...
    See more | Go to post

    Leave a comment:


  • gabosom
    replied to combobox problems
    in PHP
    Hi,

    On the page where you have your combobox, is that all the code for that page? What does 'sel()' do?

    I would recommend that if want to fill the values of the other combobox, use an AJAX script or POST the data into the same page.

    Cheers
    See more | Go to post

    Leave a comment:


  • gabosom
    replied to clear/reset button
    in PHP
    I would first check for two things:

    1) The button is uploaded and it actually is on the server
    2) Check if the url you're using for the button is based on a relative path rather than a local path such as 'http://localhost/images/buttons/"

    If not, just go for the regular HTML reset button.

    Cheers
    See more | Go to post

    Leave a comment:


  • gabosom
    replied to Problem with this..Notice: Undefined index
    in PHP
    You can also try using the '@' before the statement so the warning doesn't show up =). But I would too use the isset function first.
    See more | Go to post

    Leave a comment:


  • gabosom
    started a topic C# not returning StoredProcedure Output variable
    in .NET

    C# not returning StoredProcedure Output variable

    Hi! I've been breaking my head trying to get the output variables from my Stored Procedure.

    This is my SP code

    Code:
    CREATE PROCEDURE GetKitchenOrderDetail(
    @idService int,
    
    --outPut Variables 
    @idUser int OUTPUT,
    @estTimeDelivery datetime = null OUTPUT,
    @timeDelivered datetime = null OUTPUT,
    @timeOrder datetime = null OUTPUT,
    @estTimePrepare int OUTPUT,
    ...
    See more | Go to post
No activity results to display
Show More
Working...