Posts
 
Reputation
Joined
Last Seen
Ranked #279
Strength to Increase Rep
+10
Strength to Decrease Rep
-2
94% Quality Score
Upvotes Received
33
Posts with Upvotes
28
Upvoting Members
21
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
13 Commented Posts
~156.64K People Reached
About Me

I'm complicated...not enough space :-)

Interests
Hiking, camping, marksmanship
PC Specs
home-made
Favorite Tags
Member Avatar for programmingnoob

you should be able to simulate the computer input "manually" to verify it's functioning before frustrating yourself by chasing a phantom. That's troubleshooting 101. Keep cutting the problem in half. Verify what works vs. what doesn't. Then continue to break down the components of the non-working section, etc. In your …

Member Avatar for rproffitt
0
2K
Member Avatar for danielagaba

How does this SQL work? did you try doing var_dump($news); [CODE] cn = connect_db(); $cn_sql = "SELECT message from messageboard"; $con_res = mysql_query($cn_sql); $news = $con_res; [/CODE] Assuming that you wrote your own db connect somewhere and it is correct, Your out put is a mysql resouce, an probably an …

Member Avatar for php_dev
0
688
Member Avatar for Avasulthiris

[QUOTE=dasatti;967079]One of the reasons that invalid result set is returned could be you are comparing a string value with an integer type field in database. Make sure that if the id field in flowchart table is int then use this statement [icode]$checkquery = "SELECT * FROM flowchart WHERE id = …

Member Avatar for Dr. Raven
0
10K
Member Avatar for slr

You have boolean inside the argument. try this: [CODE] var_dump($result); //check what is coming from the query,if anything if(mysql_num_rows($result) = 1) ; //It's a value result , not boolean [/CODE]

Member Avatar for yewbhex
0
272
Member Avatar for takeshi

You need to explain your problem better. As it is, You get all of the student sthat voted order listed by dept. What else are you trying to do? It's not clear...

Member Avatar for test1234qsr
0
450
Member Avatar for kashmir323

How about defining the ENTIRE code a a void function which drops through to the "restart" decision block. If yes, RECALL THE FUNCTION, else return 0; which will drop you out of int main(). I think this solution is more in line with OOP.

Member Avatar for WaltP
0
2K
Member Avatar for tformed

Keep dividing by "test numbers" until the modulus and the test number are equal. Of coarse things will get a bit stickier when the square root is a non-integer...

Member Avatar for mikrosfoititis
0
1K
Member Avatar for JennyK
Member Avatar for cgi.net
0
2K
Member Avatar for ApocDen
Re: Snow

The only problem is, the marque tag is not valid html. You would have to construct something from javascript as an equivalent.

Member Avatar for softwareforpc
0
241
Member Avatar for forumposters

>Here's what I've come up with so far Somehow I find it hard to believe that you can write IsPrime but not the main driver to print the primes in the range [0..100). I'm guessing you were given IsPrime and told to write main, which means ***you've*** come up with …

Member Avatar for yashsaxena
0
785
Member Avatar for maunica

[QUOTE=maunica;1216408]hi all, I am a new learner of php. I m currently working on my 1st php project.project is all about a website development.The site is still underdevelopment. I want to include counter in m website in order to know the number of visitors.I am continuously searching for a snippet.Please …

Member Avatar for hellojohnatan
1
114
Member Avatar for KadajXII

Perhaps with the nested CSS, something was not defined before implemented? Also, you have two definitions for nt_op.

Member Avatar for KadajXII
0
145
Member Avatar for vinayakgarg

[QUOTE=vinayakgarg;1509554]Well the code is the usual... html with div tag having a id="footer" and a separate css file with [CODE=css] #footer{ width:100%; } [/CODE] its not just with my code i guess. i have seen this "simple little common" problem elsewhere also. Hope someone gets it. Apologies if my post …

Member Avatar for vinayakgarg
0
170
Member Avatar for Krstevski

simple random word math problems work well against bots. They are simple and not difficult to figure out like captch forms. Sometimes I have to scroll through 3 or four captch selections before I'm sure that I know what it is. The funniest one I ever saw, was a simple …

Member Avatar for TechySafi
0
1K
Member Avatar for EPierre

Wherever you found that, just select "view source code" to see the code involved. For a more in depth look get an add on for firefox like "web developer" which alows you to easily drill down into the inner workings of a site.

Member Avatar for tinymark
0
130
Member Avatar for mattyd
Member Avatar for JRM
0
131
Member Avatar for danny5514

[QUOTE=danny5514;1445375]hi all all i want to do is create a simple html form and submit it direct to a forum thread i have created can anyone help or is it not possible the idea is that someone can post a result of a game they have played without going to …

Member Avatar for danny5514
0
122
Member Avatar for mudage10

[QUOTE=mudage10;1423814]hello, i am in last year, computer science(Rwanda) does any one help me to find the subject proposal in computer science? i would like to develop an internet system by using languages like html, php,mysql,.. . thanks.[/QUOTE] Isn't that what you went to school for?

Member Avatar for danny5514
0
118
Member Avatar for suavedesign

[QUOTE=suavedesign;1421301]cfajohnson: The percentage is relative to the entire browser, or the element that is containing it? (I.e. An element inside a main wrapper div is 20% of the entire browser, or 20% of main wrapper div?) Thanks[/QUOTE] nested divs are relative to the closest outer div only, i believe.

Member Avatar for cfajohnson
0
678
Member Avatar for tcollins412

[QUOTE=tcollins412;1418789]oops forgot to end the td sorry[/QUOTE] Looks like you forgot the <tr> </tr> as well. The rounded corner CSS is not widely supported at this time, which means that not everyone will be seeing the same thing. You have to design websites to accommodate the least common denominator of …

Member Avatar for shaya4207
1
172
Member Avatar for Hell Bomb
Member Avatar for Tenaciousmug

Mysqli has it's own special PHP methods. I think you are getting an error because you are out of scope. [URL="http://us3.php.net/manual/en/book.mysqli.php"]mysqli[/URL] The fix may be as simple as: [CODE]$fusername = mysqli_real_escape_string($_POST['fusername']);[/CODE] Add the i onto all instances of mysql_real_escape_string Hope that was it.

Member Avatar for Mogradjinn
0
2K
Member Avatar for Danny_501

did you see this? [URL="https://help.ubuntu.com/community/ApacheMySQLPHP"]Ubuntu server stack[/URL] Seems that the folks at Ubuntu have a plug n' play LAMP server in the repository, ready to go. This article also describes how to do apache only. (I don't reccomend that, since you will eventually want PHP and MYSQL anyway.) . At …

Member Avatar for Danny_501
0
129
Member Avatar for Infame

Welcome to the club! Ie is notorious for poor support of the w3 standards. MS has built a hack into their browsers that can read alternate CSS files, called conditional comments. These are only "seen" by IE browsers. take a look [URL="http://www.webdevout.net/css-hacks"]here[/URL] Then the question is, just how many IE …

Member Avatar for JRM
0
83
Member Avatar for redous

There seem to be more than one problems with that code. there are <center> tags with no </center>, there is probably more serious issues as well. I agree that there is some thing wrong at the start. If that code is meant to be stuffed into an associative array cell …

Member Avatar for redous
0
306
Member Avatar for nikc121

Teedoff is correct. I just want to add that the form must be enclosed by the img div [CODE] <div id ="img"> <!-- style this with the background in CSS --> ... all code in between ... </fieldset> </form> </div> </div> <!-- this is the closing of the img div …

Member Avatar for JRM
0
144
Member Avatar for andrewliu

If you want the label next to the input within the cell, then don't separate them with a td tag. Make it one big cell. [CODE]<tr><td> <label for="add_street" style="font-size:12px;vertical-align:middle;padding-left:2px;">Street</label> <!--removed the cell separation. add padding as neeeded--> <input name="add_street" type="text" style="vertical-align:middle" value="" size="35" maxlength="50"/> </td></tr>[/CODE] In fact, to further simplify …

Member Avatar for JRM
0
132
Member Avatar for ubi_ct83

[QUOTE=ubi_ct83;1349621]hi all, i dont know how to get the right title of this thread.actually i wanna create a web-based system.i want to combine php n java.but for ui,i want to use html.anything that could help me like tutorial,example of web page code or any else? i appreciate if sumone could …

Member Avatar for JRM
0
88
Member Avatar for LogicWeb
Member Avatar for shancq50

If you right click on that effect, you will see that it is a flash player entity. The pugin author comes up too.

Member Avatar for JRM
0
64