Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #4K
~2K People Reached
Favorite Tags

8 Posted Topics

Member Avatar for thorin

This should be an easy question. I just need to make so that when you click on some function in pgAdmin 3 and then click the SQL button on the top (the focus glass icon) the code form the selected function (showing in the sql pane) to automatically show in …

0
144
Member Avatar for thorin

I am getting a very mysterious bug when I run my java website in Browser Mode: IE9 Compatibility View - the sessions stop working and I have no idea why. I don't think there is a tag or any code that I can include in my website that can force …

Member Avatar for thorin
0
619
Member Avatar for thorin

hi, everyone I am a Java newbie. I have followed a bunch of tutorials and examples from the web but they all failed miserably at teaching me how to properly apply this library: com.google.gson. First how do I receive properly in the java servlet a json request that has been …

Member Avatar for peter_budo
0
500
Member Avatar for thorin

I am new to JSP and I am not very familiar with what its advantages and disadvantages are. We all know that Java is a big and complicated language, but it's not as web oriented as PHP. I have also heard that it's more expensive to find a server for …

Member Avatar for peter_budo
0
155
Member Avatar for jacob21

Everything seems fine with your jqeury scripts and all the information passes perfectly. If you still haven't solved this, I would suggest to check your server script and in particular your database insert statement. Most likely you are trying to pass a value that the database doesn't accept and therefore …

Member Avatar for Stefano Mtangoo
0
201
Member Avatar for asif49

You would need quite an advanced mysql query to do what you want if it is possible in the first place. From what I understand you need to count the occurrences of every keyword in a field and then order the results by that number. If it were in a …

Member Avatar for asif49
0
215
Member Avatar for nick_90

1. To avoid the notice you need to check if the variable is set: $id = isset($_GET['artist_id']) ? $_GET['artist_id'] : null; that means that if $_GET['artist_id'] exists then $id equals $_GET['artist_id'] but this is hardly a mistake, it's just a notice 2. the function on line 10 should be mysql_num_rows …

Member Avatar for raphie
0
272
Member Avatar for TwinsInTow

This error message usually occurs when there has been an output such as an echo or print command before the headers are sent. Always make sure you don't output anything before you send headers! Line 934 should be the line where the header is, not the line that causes the …

Member Avatar for TwinsInTow
0
308

The End.