Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
4
Posts with Downvotes
3
Downvoting Members
3
1 Commented Post
~20.3K People Reached
Favorite Tags
php x 14
c x 10
java x 1
Member Avatar for jeeter19

Hi, I am trying to copy all contents from one directory over to another directory. This is the code I have so far: [CODE] #include <dirent.h> #include <errno.h> #include <fcntl.h> #include <pthread.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/stat.h> #define MAXNAME 80 #define R_FLAGS O_RDONLY #define W_FLAGS (O_WRONLY | …

Member Avatar for fkjhadslf
0
2K
Member Avatar for jeeter19

Hi, I am practicing MySQL JOINs and was hoping I could get some insight on how to do a particular problem. I am using the World database, it has a table called City with name, population, country code. It also has a table called Country, with Code and Name. What …

Member Avatar for jeeter19
0
95
Member Avatar for jeeter19

Hi, I'm trying to send a MySQL query string from a C# application to a PhP submission page via POST. The problem I am receiving is when I try to use the WHERE clause it hangs up at the string I'm trying to compare to. [B]The Query[/B] SELECT * FROM …

Member Avatar for pulketo
0
143
Member Avatar for jeeter19

Hi all, My question pertains to the reading of a text document. Currently I am reading a text file searching for certain syntax and once it finds it then it uses that line. The thing is, I am currently doing this: [CODE] while (reader.readLine() != null) { DOSTUFF(); } [/CODE] …

Member Avatar for kvprajapati
0
1,000
Member Avatar for jeeter19

Hi, [B]Problem At Hand:[/B] Include my [I]config.php[/I] file which contains the string variables I want to use inside my [I]global.php[/I] file which contains a connect() method which I am trying to use. [B]What's Going Wrong:[/B] It successfully is including the [I]config.php[/I] file but it doesn't seem to have access to …

Member Avatar for rajarajan2017
0
14K
Member Avatar for Encrypted

Hey everyone, I don't even know where to begin with this. I need to limit folder access to only those members who are allowed to access them. For example, I'm creating a folder /5/ within a folder called /orderreports/ for the order id 5. I need to check which user …

Member Avatar for Usernamex235
0
161
Member Avatar for jeeter19

Hi, I'd like to copy one directory to another, including subdirectories. Each file that is copied over needs to have its own thread and each following thread must wait for the previous one to finish and exit before being created. The directory names are passed in *arg separated by a …

Member Avatar for abhimanipal
0
107
Member Avatar for jeeter19

Hi all, I have a question about moving through the elements in a web browser via C#. I currently am trying to get a checkbox to become unchecked using the HtmlElementsCollection... I have so far been able to implement putting text into a message box that is on a webpage, …

Member Avatar for kvprajapati
0
742
Member Avatar for jeeter19

Hi I'm just trying to input two string variables into 2 fields of a database that are VarChars. [CODE] $name = "jear"; $pass = "jartt2"; $query = 'INSERT INTO `user` (`id`, `name`, `password`, `char_name`) VALUES (NULL, '$name', '$pass', 'test')'; $result = mysql_query($query); [/CODE] This is the snippet of code that …

Member Avatar for jeeter19
0
71
Member Avatar for jeeter19

Hi, I have an application that is going to be loading in about 30,000 files (very very small ones). These will be saved into memory (predicting about ~30MB of memory needed), and right now I just have them loaded in one at a time..I'll find a better algorithm for loading …

Member Avatar for Geekitygeek
0
89
Member Avatar for jeeter19

I have 2 variables that should be global within its own file. I am attempting to access their set information from a function within that file but I receive nothing but an error. When I hardcode in the information into the function instead of retrieving from the variables, it works …

Member Avatar for diafol
0
102
Member Avatar for jeeter19

Hi, I'm trying to write a short/simple function that will get the information that is in a COOKIE and return it. I have a COOKIE that is called [B]auth[/B]. This COOKIE is properly set as I can do an [I]echo $_COOKIE['auth'];[/I] and it will show the proper number. The problem …

Member Avatar for Airshow
0
130
Member Avatar for jeeter19

Hi, I'm trying to just grab a small column of data from a Database and return it. This is a function called getAccessLevel(), it returns the Access level which is an integer. There is a table called users in the DB and the column access holds either 0, 1, or …

Member Avatar for jeeter19
0
145
Member Avatar for jeeter19

I am developing a class called AVLtree, this class contains the methods get(), put(), remove(), and ascend(). This class allows multiple keys to be the same. My questions are: How would you be able to get() if there are multiple same keys? How would you get something that is passed …

0
59
Member Avatar for jeeter19

Hi, I understand how there are events for things such as buttons and other form objects, but I was curious as to if it is possible to create an event for when a variables value is changed. Thus if I have an integer variable named MyInt with value 0, it …

Member Avatar for sknake
0
114
Member Avatar for jeeter19

Hi, I was wondering if it is possible through C# to get all the directories of a website. Example: A website called example.com/ has the directories example.com/john, example.com/jill, example.com/pinkelephantsocks, and I searched for the directories of example.com/ it would return those 3 directories. Sorry if this isn't clear enough, any …

Member Avatar for apegram
0
81
Member Avatar for jeeter19

Hello all, I am working on a little side project for my own amusement and learning that involves moving throughout a webpage and doing things (ie login, going to pages, clicking links, posting forms, etc) on it's own. This project will be similar to programs such as FriendBlaster, which logs …

0
47
Member Avatar for FZR005

Can I install hardcore computer games on a flash drive without installing on my computer? So can I install hardcore computer games on a flash drive without installing the games on my computer? I would like to play games such as Star Wars Knights of the Old Republic 2 The …

Member Avatar for mrPaul
0
150
Member Avatar for jeeter19

I need to print out the following values on std-out: -CPU Type and Model -Kernel Version -Amount of time since the system was last booted, in the form dd:hh:mm:ss This is all on Ubuntu 8.04 I have looked through my Linux Kernel book but it is very vague about how …

Member Avatar for dkalita
0
191
Member Avatar for jeeter19

I have been given an assignment where I have to create a small shell that the user will be able to enter in a path and 2 parameters. The shell must be able to process this input and run the program at the given path using execvp, and must also …

Member Avatar for Ancient Dragon
0
293
Member Avatar for riahc3

Hey I know gcc is problably the best natural complier for C but Im looking for a IDE. I cant use Visual Studio 2008 (which Id like to) as it uses it own compiler. I was using wx-dev (I believe it is called like that) and it is pretty good. …

Member Avatar for jeeter19
0
388