User Profile

Collapse

Profile Sidebar

Collapse
FB2006 TEAM
FB2006 TEAM
Last Activity: Mar 1 '07, 12:02 PM
Joined: Feb 4 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • FB2006 TEAM
    started a topic mysql_query / password error
    in PHP

    mysql_query / password error

    Apache 2.0
    PHP 4.4
    MySQL 5.0
    =========
    Ok, here what is going on! Every time when I trying to login into system I’m getting message (its last “else” in F_LogIn function):
    “Nothing is working”
    and so result of this:
    “You could not be logged in”
    I don’t know why it’s happen, but by testing my query, I found out that problem in “user_password” , without this parameter everything...
    See more | Go to post

  • FB2006 TEAM
    replied to Geometry Calculator
    in C
    Ok, here you have the program that will do the job. BUT… :-) … it will do it correctly, only if you make it to do so! What I mean?
    First of all, you need write appropriate massages (in any way you like) that will describe specifics event. All this places is marked with “Change next massage as you like”, and, inside the printf() you have short description of this event.
    Secondary, and this is the most important thing you must...
    See more | Go to post

    Leave a comment:


  • If you still need suggestions I will be glad to help you, but don’t think that I am trying to be a SMART GUY!

    Suggestion I - always use constant instead of numbers. In this case you can only make changes in one plays instead of looking in all program to change each number.
    Suggestion II - use functions as much us possible, even if function will contain one line of code. And ALWAYS use names that describe what this function...
    See more | Go to post

    Leave a comment:


  • FB2006 TEAM
    replied to pyramids
    in C
    Hey, popu, you need solution (I mean code) or just “bla, bla, bla…”!?
    See more | Go to post

    Leave a comment:


  • Hey, dejavu, do you still need help with this program?
    See more | Go to post

    Leave a comment:


  • FB2006 TEAM
    replied to draw Tree pattern based on inputed height
    in C
    Well, I not so good in explanations, so I just show you my way to solve this problem (by using C). I’m sure you will understand it! If not, I will try to explain it on my “broken” English.

    Code:
    #include <stdio.h>
    
    void F_DrawWhiteSpace (int);			// This function called from all other functions
    void F_DrawLeftSideOfTree (int);		// This function called from "main"
    void F_DrawRightSideOfTree (int,
    ...
    See more | Go to post

    Leave a comment:


  • Try this one

    Code:
    ...
    # define ARRAY_LENGTH 10
    void F_SortArrayContents (int []);
    ...
    void F_SortArrayContents (int array []) // Or on "technical" language this function called "Bubble sort"
    {
    	int index_x = 0;
    	int index_y = 0;
    	int temporary_number = 0; // This variable will contain the next highest/lowest number from array
    
    	for (index_x = ARRAY_LENGTH
    ...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...