Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for h0neydip

Hi, Im creating a page where it displays URLS, tags, and the user associated with it who is logged in after a login form was done. The tags are hyperlinks, so if a user clicks on it, it will reload the page with all the URLs associated with that tag. …

Member Avatar for diafol
0
75
Member Avatar for h0neydip

Im having trouble importing the text file from my desktop into the database,i tried it both ways but it doesn't seem to work, does the file have to be somewhere specifically for it to import. please help [code] load data local infile 'userdata_import.txt' into table tags fields terminated by ',' …

Member Avatar for isharra
0
94
Member Avatar for h0neydip

Ok so i have this login form with session and cookies, how can i redirect the user to another page if the user fails to login after three attempts, and hitting the submit button at anytime is an attempt,does using SESSION come into play here?, your help is greatly appreciated.

Member Avatar for sudeepjd
0
465
Member Avatar for h0neydip

Hey, I am trying to convert an elbonian date which has a format day-year-month to a US date month-day-year in Long date format, any suggestion on how i can achieve this. Here's what it is suppose to look like: [URL=http://img201.imageshack.us/i/testwf.jpg/][IMG]http://img201.imageshack.us/img201/7435/testwf.jpg[/IMG][/URL] Uploaded with [URL=http://imageshack.us]ImageShack.us[/URL]

Member Avatar for TsadokBlok
0
94
Member Avatar for h0neydip

Hi, I have this function in a class file Fileops.php which is suppose to read from a text file then validate a username and password from that text file then if they match will take me to Links.php when the function is called from index.php, but i am getting these …

Member Avatar for saiprem
0
101
Member Avatar for h0neydip

I can't seem to figure out why it keeps showing me this error,where am i doing wrong?, can someone help me please [CODE] <?php include_once "cinc/Tbox.php"; # include the class file for textbox validation // BEGIN PROCESSING HERE // this version uses POST so we will see the data in …

Member Avatar for =OTS=G-Man
0
180
Member Avatar for h0neydip

[code= cplusplus] struct wheel_node { int contents; wheel_node* next; }; typedef wheel_node* wheel_ptr; class wheel { private: wheel_ptr arrow; public: wheel (); void print (); void spin (int distance); void move_to (int number); }; [/code] The constructor wheel creates a circular linked list as follows: arrow -> 5 -> 40 …

Member Avatar for Lerner
0
140
Member Avatar for h0neydip

[code=cplusplus] struct wheel_node { int contents; wheel_node* next; }; typedef wheel_node* wheel_ptr; class wheel { private: wheel_ptr arrow; public: wheel (); void print (); void spin (int distance); void move_to (int number); }; [/code] The constructor wheel creates a circular linked list as follows: arrow -> 5 -> 40 -> …

Member Avatar for hammerhead
0
114
Member Avatar for h0neydip

ok i have this program dealing with date Class. im having trouble with the overloaded operator % which returns a date with smallest component month, day, and year for two given dates. your help is very appreciated. For Example: d1 is May 5 , 1942 d2 is August 1, 1970 …

Member Avatar for Ancient Dragon
0
365
Member Avatar for h0neydip

[code] #include <iostream> using namespace std; const int queue_size = 1000; class queue { private: // array containing queue elements char data [queue_size]; char *front, // index of the front of the queue // indexes 1 before actual front element *rear; // index of the rear element in the queue …

Member Avatar for dougy83
0
113