Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
91% Quality Score
Upvotes Received
14
Posts with Upvotes
9
Upvoting Members
6
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
3 Commented Posts
8 Endorsements
Ranked #233
Ranked #1K
~47.0K People Reached
Favorite Tags
Member Avatar for ravoras

Hey Guys, So using a webform textarea I am passing some data into PHP. This data is basically 4 columns of an excel sheet and potentially unlimited rows. Now I want to be able to go through this data, select each of the four individual elements from each row, insert …

Member Avatar for skradoslav
0
4K
Member Avatar for cse.avinash

Hello every one Can I have a better algorithm to find the nth prime number, where 1<= n <=5000000. for e.g., 1st prime number is 2. 10th prime number is 29. 100th prime number is 541. 1000th prime number is 7919. 10000th prime number is 104729. 100000th prime number is …

Member Avatar for vantrendin
1
6K
Member Avatar for debasisdas
Member Avatar for James_28
8
16K
Member Avatar for Smeagel13

Take the following C structure: typedef struct dataPoint { tick * tickData; struct dataPoint * previousDataPoint; struct dataPoint * nextDataPoint; } dataPoint; Compiling on a 64-bit system with 8-byte words, this structure takes up 24 bytes (3 words) of memory. 24 % 8 = 0 ... so it is word …

Member Avatar for Smeagel13
0
284
Member Avatar for Smeagel13

I handle my email myself with open-source IMAP implementations, at work we have IBM Domino, I'm trying to get a feel for what yourself/businesses (you know of) use? Not so much why, but just to see rough market usage... Thanks.

Member Avatar for JorgeM
0
181
Member Avatar for dhruv_arora

What do you think, will Google + project will be able to take over FB as the no. 1 social network. I don't it will be able to, looking at the way Google is making people wait for an invite to get in people will eventually lose interest in Google+ …

Member Avatar for asifalizaman
0
1K
Member Avatar for nabeelkhanjadoon10

I am first semester student and studiyg CS. I need a c++ project atleast 1000 lines of code. but the project is too simple. I have studied yet Arrays..

Member Avatar for DoRight
0
6K
Member Avatar for backlinkco

Search engine optimization (SEO) is the process of improving the visibility of a website or a web page in a search engine

Member Avatar for halenmartinez
0
539
Member Avatar for Smeagel13

So much of SEO advice around the internet, well what I've found anyway, is based on bloggers or people with content heavy sites. This is making it a little hard to find what I'm after. I can't see websites like Amazon, eBay, DaniWeb even, following this kind of SEO. So …

Member Avatar for seo2india
1
229
Member Avatar for Rajshri Patil

How do I implement both Schema and Rich Snippets and how beneficial are they to SEO and the Serps?

Member Avatar for dandcouk
0
132
Member Avatar for rithish

#include <stdio.h> int main(void) { int ten = 10; int two = 2; printf("Doing it right: "); printf("%d minus %d is %d\n", ten, 2, ten - two ); printf("Doing it wrong: "); printf("%d minus %d is %d\n", ten ); // forgot 2 arguments return 0; } hello actually i coulnt …

Member Avatar for Lucaci Andrew
0
133
Member Avatar for showman13

I know this is more of a math question, but since I'm trying to evaluate it in a script, maybe I can squeeze it in here. I know there is an easy way to do this, but for the life of me, I can't seem to get it clear. If …

Member Avatar for veedeoo
0
126
Member Avatar for vizz
Member Avatar for Smeagel13

<div class="parent"> <div class="child"></div> </div> /* Final Width: 200px */ div.parent { width: 200px; } /* Final Width: 202px (with border) */ div.child { width: 100%; border: 1px solid #000000; } /* Final Width: 200px (with border) */ div.child { /* Width Inherited -- Assumed as 200px? */ border: 1px …

Member Avatar for Smeagel13
0
200
Member Avatar for Smeagel13

Field defined as DECIMAL(5,2), trying to INSERT (250.00). When query is performed remotely to DB server, it fails with 'Out of range value for column...', when query is performed locally on the DB server, the query works. The query works remotely when the value being inserted is 226.24 (yes, that …

0
90
Member Avatar for pavitrakannan

whenever i execute a mysql php code...it says local host not given access to this database..... i just ran other programs an hour back and it showed no problem! now i am not able to connect to tht particular database. i checked the xammp cntl panel....and resatrted mysql and apache …

Member Avatar for Smeagel13
0
252
Member Avatar for samuelmax

Is anyone aware of a tool that allows you to track when Google comes to your site and index it? I know that I can see what the last indexed date was, but I want to see a track record of the frequency of Google coming to my site

Member Avatar for Smeagel13
0
109
Member Avatar for m1n1m3

Hey! **Im here to ask for Your advice.** For a school project we choosed to create a android application that uses a database. As we are thrid year studens we have some experiance. But it is not as notable. We have **seen some**: **Access SQL** only on acess. How to …

Member Avatar for peter_budo
0
225
Member Avatar for hwoarang69

tring to create a website where user can upload image. i have 2 database 1-user(database) 1- which has user_id, email, passwod 2-image(database) 2-which has image_id, user_id, image(store image here), image_name ...etc on upload.php page user has to fill this form hit sumbit. and it will run php code on upload.php …

Member Avatar for code739
0
237
Member Avatar for dheerajm

hello i am developing a website and i have a problem. when i enter a keyword in my search tab, it works fine and displays all the products matching with the keyword. when i click on a single product the product page opens fine also. but i want all the …

Member Avatar for senthilvignesh
0
114
Member Avatar for NetJunkie

When did you start programming and what language did you start in? Here, I'll start: I started when I was around 15 but kinda stopped for awhile because it seemed too difficult. So around 17, I really got back into it and started learning more and more as I progressed. …

Member Avatar for Reverend Jim
0
962
Member Avatar for hwoarang69

for some reason when i hit submit button it doesnt go run php code. i have this form below. when i hit sumbit button it should start the php code. <form action="" method="post"> <?php //print errors if(array_key_exists('reg_error', $_SESSION) && !empty($_SESSION['reg_error'])) { echo $_SESSION['reg_error']; unset($_SESSION['reg_error']); } ?> Firstname: <input class = …

Member Avatar for |-|x
0
1K
Member Avatar for hwoarang69

i have this form. when user hit sumbit button i want to run changepassword.php <form action = 'changepassword.php' method = 'POST'> Old password: <input type='password' name='old_password'><br/> New password: <input type='password' name = 'new_password'><br/> Confirm password: <input type='password' name = 'confirm_new_password'><br/> <input type='submit' value='Change password'> </form> so when user hit submit …

Member Avatar for hwoarang69
0
212
Member Avatar for pennywise134

Hey everyone, I'm pretty unexperienced when it comes to SHELL scripting, and I'm having some issues with something. I'm trying to use a command that lists files within a directory with names that start with “t” or “f” and end with “3” or “2”. After that I will need to …

Member Avatar for chris.stout
0
122
Member Avatar for Ordella

As I mentioned in an earlier post of mine that I have my computer exam on th 26th March 2012.. So I was just wondering if anyone could provide me with some programming questions for my school level which I could practice on my own. If anyone is posting me …

Member Avatar for stultuske
0
107
Member Avatar for Smeagel13

Hi Guys, Is there a way to put home videos on the iPhone, without it being classed as a Film or Music Video in iTunes? I like to think of Videos, Films and Music Videos all as separate groups... Unless Apple considers films, movies and videos to be the same.

0
93
Member Avatar for MooGeek

Hello! My name is miss Marcy Albert,i want us to be friends i don't know how you will feel about it,please you can write to me (marcyalbert@yahoo.com) i'm sorry if i am embarrassing you, i shall explain all about myself including my pictures. yours in miss Marcy. Yours in miss …

Member Avatar for WaltP
0
202
Member Avatar for violaceous

Hi all, I'm new to PHP and was wondering if someone could help me... I need to write something so that when row "expire" (this is the date the account expires) is 5 days from expiring, a message shows up. I can format everything myself, I'm just drawing a blank …

Member Avatar for Smeagel13
0
108
Member Avatar for happygeek

If you've ever played a shooter such as Call of Duty, Battlefield or Halo in online multiplayer mode, then you will appreciate how difficult it can be to stay alive when everyone else has better weapons and knows the game maps so much better than you. But now there is …

Member Avatar for jammerjoe
0
1K
Member Avatar for coolbeanbob

Hello, I am currently working towards a computer science degree. I am interested in both software engineering and database administration, but I am not sure which I will prefer as a career. I am considering working on an Oracle certificate, just to get my feet wet, and see how well …

Member Avatar for coolbeanbob
0
267